Package not found. Please check the package name and try again.
keccak 1.2.1 → 1.2.2
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 +2 -2
- data/keccak.gemspec +3 -3
- data/lib/digest/sha3/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cda9d0be3f1eab051a8a92e9ab5500817f01728cc49b402240e2f01a6546c04f
|
|
4
|
+
data.tar.gz: c2482abc3dcb9a76794f9179d7b6532a6199c8cf6d69b9564331040db793db64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3636878a8d2c10f72188485afa5658a9ca7c63cd97aa913e1dd919b15bd670e9095865b82e1e39ee8bd2cacc7a08cccb79d2c738f4a95381677de2eb18d3bc1a
|
|
7
|
+
data.tar.gz: ba5450094c95bd85db62a0db1f075a3b5a291f2199b89ee8f87cb69295988d7aa7a5c1ff590a5a9cbfc67d7ecbc20b4ecdfabc9c1d92951afdbec0f2f1b63921
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://rubygems.org/gems/keccak)
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
|
|
9
|
-
This Ruby extension exposes the [Keccak](http://keccak.noekeon.org/) (SHA-3) digest C bindings in the non-final version used by Ethereum. It is based on the reference `C` implementation, version 3.2. The exposed interface is almost identical to that of the `digest` standard library.
|
|
9
|
+
This Ruby extension exposes the [Keccak](http://keccak.noekeon.org/) (SHA-3) 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.
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
@@ -21,7 +21,7 @@ gem install keccak
|
|
|
21
21
|
gem 'keccak', '~> 1.2'
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
**Note**: as of version `v1.1.0`, `digest-sha3` (historic name) requires Ruby 2.2. The new `keccak` version `v1.2.0` now also supports Ruby 3.0. The last version that worked on older Ruby (1.x) versions was `v1.0.2`. It can be found at the no longer maintained
|
|
24
|
+
**Note**: as of version `v1.1.0`, `digest-sha3` (historic name, see below) requires Ruby 2.2. The new `keccak` version `v1.2.0` now also supports Ruby 3.0. The last version that worked on older Ruby (1.x) versions was `v1.0.2`. It can be found at the no longer maintained `digest-sha3` [repository from 2015](https://github.com/phusion/digest-sha3-ruby/releases/tag/release-1.0.2).
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
27
27
|
|
data/keccak.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.name = "keccak"
|
|
10
10
|
spec.version = Digest::SHA3::VERSION
|
|
11
11
|
spec.summary = "The Keccak (SHA-3) hash used by Ethereum."
|
|
12
|
-
spec.description = "The Keccak (SHA-3) hash
|
|
12
|
+
spec.description = "The Keccak (SHA-3) hash used by Ethereum. This does not implement the final FIPS202 standard, today known as SHA3 but rather an early version, commonly referred to as Keccak."
|
|
13
13
|
spec.homepage = "https://github.com/q9f/keccak.rb"
|
|
14
14
|
spec.authors = ["Afri Schoedon", "Alex Kotov", "Chris Metcalfe", "Hongli Lai (Phusion)", "Keccak authors"]
|
|
15
15
|
spec.email = "%w[ruby@q9f.cc]"
|
|
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.metadata = {
|
|
21
21
|
'homepage_uri' => 'https://github.com/q9f/keccak.rb',
|
|
22
22
|
'source_code_uri' => 'https://github.com/q9f/keccak.rb',
|
|
23
|
-
'
|
|
24
|
-
|
|
23
|
+
'github_repo' => 'https://github.com/q9f/keccak.rb',
|
|
24
|
+
'bug_tracker_uri' => 'https://github.com/q9f/keccak.rb/issues',
|
|
25
25
|
}.freeze
|
|
26
26
|
spec.require_paths = ['lib']
|
|
27
27
|
spec.files = Dir[
|
data/lib/digest/sha3/version.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.2.
|
|
4
|
+
version: 1.2.2
|
|
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: 2021-10-
|
|
15
|
+
date: 2021-10-07 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: bundler
|
|
@@ -42,7 +42,7 @@ dependencies:
|
|
|
42
42
|
- - "~>"
|
|
43
43
|
- !ruby/object:Gem::Version
|
|
44
44
|
version: '3.4'
|
|
45
|
-
description: The Keccak (SHA-3) hash
|
|
45
|
+
description: The Keccak (SHA-3) hash used by Ethereum. This does not implement the
|
|
46
46
|
final FIPS202 standard, today known as SHA3 but rather an early version, commonly
|
|
47
47
|
referred to as Keccak.
|
|
48
48
|
email: "%w[ruby@q9f.cc]"
|
|
@@ -75,6 +75,7 @@ licenses:
|
|
|
75
75
|
metadata:
|
|
76
76
|
homepage_uri: https://github.com/q9f/keccak.rb
|
|
77
77
|
source_code_uri: https://github.com/q9f/keccak.rb
|
|
78
|
+
github_repo: https://github.com/q9f/keccak.rb
|
|
78
79
|
bug_tracker_uri: https://github.com/q9f/keccak.rb/issues
|
|
79
80
|
post_install_message:
|
|
80
81
|
rdoc_options: []
|