keccak 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ee087f0bdede542d75edc668ec80da13eb7fa370f8b592b15a61ab8b476000b
4
- data.tar.gz: b52445cd261c3f41f14162023b98a405a54b7a57623dbbaaefe88a7bc4909906
3
+ metadata.gz: cda9d0be3f1eab051a8a92e9ab5500817f01728cc49b402240e2f01a6546c04f
4
+ data.tar.gz: c2482abc3dcb9a76794f9179d7b6532a6199c8cf6d69b9564331040db793db64
5
5
  SHA512:
6
- metadata.gz: df21f0f4067f4eec3b7a095a27b2890110b741dcd3d5236bbd446c17ac11956984e315b61a2e3a9cc40ffe2c531666b1d2caf63a39bd87435d7267113f9c194c
7
- data.tar.gz: 113919c41f5a4bf475805849cffcbece79d07acb139cdc83e055c52826c88895614eea682ebe5d6a3d61a5364ba74d4c728e9f69632f8a3e2d299f841442f10b
6
+ metadata.gz: 3636878a8d2c10f72188485afa5658a9ca7c63cd97aa913e1dd919b15bd670e9095865b82e1e39ee8bd2cacc7a08cccb79d2c738f4a95381677de2eb18d3bc1a
7
+ data.tar.gz: ba5450094c95bd85db62a0db1f075a3b5a291f2199b89ee8f87cb69295988d7aa7a5c1ff590a5a9cbfc67d7ecbc20b4ecdfabc9c1d92951afdbec0f2f1b63921
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![Gem](https://img.shields.io/gem/v/keccak?color=red)](https://rubygems.org/gems/keccak)
7
7
  [![License](https://img.shields.io/github/license/q9f/keccak.rb.svg?color=black)](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 [`digest-sha3` repository from 2015](https://github.com/phusion/digest-sha3-ruby/releases/tag/release-1.0.2).
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 use by Ethereum. This does not implement the final FIPS202 standard, today known as SHA3 but rather an early version, commonly referred to as Keccak."
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
- 'bug_tracker_uri' =>
24
- 'https://github.com/q9f/keccak.rb/issues',
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[
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Digest
4
4
  class SHA3
5
- VERSION = '1.2.1'
5
+ VERSION = '1.2.2'
6
6
  end
7
7
  end
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.1
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-02 00:00:00.000000000 Z
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 use by Ethereum. This does not implement the
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: []