digest-keccak 0.0.6 → 0.0.7
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/digest-keccak.gemspec +1 -1
- data/lib/digest/keccak/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45532dc981a336a42cad895f1fd304804c595fffd986fbf2d71370a2fdabf9a2
|
|
4
|
+
data.tar.gz: fe2db866b46e4f1ee64ea03cfbadda1c3d2151af8accf06b80b8f7094030a18b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f905e5ae659c769d8d147fc0e80c047064960981a3fc61dc8a546e0e804e91dee6bd3acc245875e1da2c7cb0a85ef100c6e03d44c563b1c544aa2e080342d39c
|
|
7
|
+
data.tar.gz: b1ecfaa969945a7cb82e33881a1b4ee852c86c94065f6a1376d0456d3352b81cf25ff8f20ac38fb694d77cfa738c2f7c04b86230c8b30e94edeb14885f1c4fb5
|
data/digest-keccak.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.summary = 'The Keccak cryptographic hash function.'
|
|
14
14
|
spec.platform = Gem::Platform::RUBY
|
|
15
15
|
|
|
16
|
-
spec.required_ruby_version = '
|
|
16
|
+
spec.required_ruby_version = '>= 3.1', '< 4.1'
|
|
17
17
|
|
|
18
18
|
spec.authors = ['Alex Kotov', 'Hongli Lai (Phusion)', 'Keccak authors']
|
|
19
19
|
spec.email = %w[kotovalexarian@gmail.com]
|
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: digest-keccak
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Kotov
|
|
8
8
|
- Hongli Lai (Phusion)
|
|
9
9
|
- Keccak authors
|
|
10
|
-
autorequire:
|
|
11
10
|
bindir: exe
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date:
|
|
12
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
14
13
|
dependencies: []
|
|
15
14
|
description: The Keccak (draft version of SHA-3) cryptographic hash function.
|
|
16
15
|
email:
|
|
@@ -45,23 +44,24 @@ metadata:
|
|
|
45
44
|
homepage_uri: https://github.com/kotovalexarian/digest-keccak
|
|
46
45
|
source_code_uri: https://github.com/kotovalexarian/digest-keccak
|
|
47
46
|
bug_tracker_uri: https://github.com/kotovalexarian/digest-keccak/issues
|
|
48
|
-
post_install_message:
|
|
49
47
|
rdoc_options: []
|
|
50
48
|
require_paths:
|
|
51
49
|
- lib
|
|
52
50
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
51
|
requirements:
|
|
54
|
-
- - "
|
|
52
|
+
- - ">="
|
|
55
53
|
- !ruby/object:Gem::Version
|
|
56
54
|
version: '3.1'
|
|
55
|
+
- - "<"
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '4.1'
|
|
57
58
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
59
|
requirements:
|
|
59
60
|
- - ">="
|
|
60
61
|
- !ruby/object:Gem::Version
|
|
61
62
|
version: '0'
|
|
62
63
|
requirements: []
|
|
63
|
-
rubygems_version:
|
|
64
|
-
signing_key:
|
|
64
|
+
rubygems_version: 4.0.3
|
|
65
65
|
specification_version: 4
|
|
66
66
|
summary: The Keccak cryptographic hash function.
|
|
67
67
|
test_files: []
|