keccak 1.3.0 → 1.3.1
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 +4 -4
- data/README.md +3 -1
- data/ext/digest/extconf.rb +1 -1
- data/lib/digest/keccak/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10fb878fcf308cc1a44942ef197956f830f0d91cc6c258acb8f5913ef6d270ce
|
|
4
|
+
data.tar.gz: 359c30bf2d466a0d95d714ea82b4281812788e999607bafe917daf7a7b710919
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95a226c317396f99e6fa1fdb15313dac072da683c5aa1345e7a609e7f283081adccf5e60bff0723e99a903a8564fb303c37a5ac9062eac26a14268394119cbd0
|
|
7
|
+
data.tar.gz: 5ea35b0f285d115dd8226920dacd21a0a51dcb02d6d08aff16985a9a567c85ee397183678bbc26097b36f3242b0d1745c5d081bebbaa4a76efbe9ee0dc4574a4
|
data/README.md
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/q9f/keccak.rb/actions)
|
|
4
4
|
[](https://github.com/q9f/keccak.rb/pulse)
|
|
5
|
-
[](https://github.com/q9f/keccak.rb/releases/latest)
|
|
6
6
|
[](https://rubygems.org/gems/keccak)
|
|
7
|
+
[](https://rubygems.org/gems/keccak)
|
|
8
|
+
[](https://hits.seeyoufarm.com)
|
|
7
9
|
[](LICENSE)
|
|
8
10
|
|
|
9
11
|
This Ruby extension exposes the [Keccak](http://keccak.noekeon.org/) (SHA3) digest `C` bindings in the non-final version used by [Ethereum](https://ethereum.org). It is based on the reference `C` implementation, version 3.2. The exposed interface is almost identical to that of the `digest` standard library. See [#16](https://github.com/q9f/keccak.rb/pull/16).
|
data/ext/digest/extconf.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: keccak
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Afri Schoedon
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date:
|
|
15
|
+
date: 2022-08-23 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: bundler
|
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
95
|
version: '0'
|
|
96
96
|
requirements: []
|
|
97
|
-
rubygems_version: 3.2.
|
|
97
|
+
rubygems_version: 3.2.32
|
|
98
98
|
signing_key:
|
|
99
99
|
specification_version: 4
|
|
100
100
|
summary: The Keccak (SHA3) hash used by Ethereum.
|