digest 3.1.1-java → 3.2.0.pre0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e00802edf4c4c9c4ea05f4bd4c1d89e9c0205dba765a8fd3d823c032c142a622
4
- data.tar.gz: 9b3285d955b1d317739db86a9ce6a42af2589f79b6767faaa4a8cc34bc52cdbb
3
+ metadata.gz: b89d1fd682c38380675e5b3f5463ea4a91fd83908bdcbf6424f1cdc5dadd21b5
4
+ data.tar.gz: fa6189ee8d365a8130ef929db63b1d4ede2ef7c09c897fe4cf4097df484a2c54
5
5
  SHA512:
6
- metadata.gz: '0719428f31492520c36404d1de960d44a5762294df99d9364cb6d06a5b4295b2684bb0116683385dc593b5db952d46622f3067577fcd7caca1cca60eaf0dbbda'
7
- data.tar.gz: f64dc1d700ce9de33949a772d3a36f47f6564896dbae7f3364a6afe78a2d02074fd48d3c50d33b5857cad92907e2919880f1dd8f1ca6f639d821c23b8962b47e
6
+ metadata.gz: b463d14a54628a967cf10efde0da24eafbec794534d54fb8301319a3eca22c9365800a2f1bd3fa6f4786a2497648ffd48baed4350ed37456aabc0aa71580e4bb
7
+ data.tar.gz: b41482911ee6cd5a2bce2fbbc54a03a952261fe065f25d077f4f189e1c4ca553398784800096a2929ec5c5ac02c25163fb9a3baa04b9574a7827c46d035240be
data/LICENSE.txt CHANGED
@@ -4,10 +4,11 @@ Redistribution and use in source and binary forms, with or without
4
4
  modification, are permitted provided that the following conditions
5
5
  are met:
6
6
  1. Redistributions of source code must retain the above copyright
7
- notice, this list of conditions and the following disclaimer.
7
+ notice, this list of conditions and the following disclaimer.
8
8
  2. Redistributions in binary form must reproduce the above copyright
9
- notice, this list of conditions and the following disclaimer in the
10
- documentation and/or other materials provided with the distribution.
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the
11
+ distribution.
11
12
 
12
13
  THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
13
14
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
data/README.md CHANGED
@@ -82,6 +82,16 @@ SHA2 family::
82
82
 
83
83
  The latest versions of the FIPS publications can be found here: http://csrc.nist.gov/publications/PubsFIPS.html.
84
84
 
85
+ ## For Gem developers
86
+
87
+ If you want to use digest algorithms in your C extension, you can use the `digest.h` header file provided by digest gem. You should add the following code to your `extconf.rb`:
88
+
89
+ ```ruby
90
+ spec = Gem::Specification.find_by_name("digest")
91
+ source_dir = File.join(spec.full_gem_path, "ext", "digest")
92
+ $INCFLAGS += " -I#{source_dir}"
93
+ ```
94
+
85
95
  ## Development
86
96
 
87
97
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Digest
4
- VERSION = "3.1.1"
4
+ VERSION = "3.2.0.pre0"
5
5
  end
data/lib/digest.jar CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: digest
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.2.0.pre0
5
5
  platform: java
6
6
  authors:
7
7
  - Akinori MUSHA
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-05 00:00:00.000000000 Z
11
+ date: 2024-12-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Provides a framework for message digest libraries.
14
14
  email:
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
- rubygems_version: 3.3.25
61
+ rubygems_version: 3.5.23
62
62
  signing_key:
63
63
  specification_version: 4
64
64
  summary: Provides a framework for message digest libraries.