digest-sha3 1.0.0 → 1.0.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.
- data.tar.gz.asc +8 -0
- data/README.md +4 -0
- data/digest-sha3.gemspec +1 -1
- data/lib/digest/sha3/version.rb +1 -1
- metadata +4 -4
- metadata.gz.asc +8 -0
data.tar.gz.asc
ADDED
data/README.md
CHANGED
|
@@ -8,6 +8,10 @@ This Ruby extension implements the SHA-3 ([Keccak](http://keccak.noekeon.org/))
|
|
|
8
8
|
|
|
9
9
|
gem install digest-sha3
|
|
10
10
|
|
|
11
|
+
Our gem is signed using PGP with the [Phusion Software Signing key](http://www.phusion.nl/about/gpg). That key in turn is signed by [the rubygems-openpgp Certificate Authority](http://www.rubygems-openpgp-ca.org/).
|
|
12
|
+
|
|
13
|
+
You can verify the authenticity of the gem by following [The Complete Guide to Verifying Gems with rubygems-openpgp](http://www.rubygems-openpgp-ca.org/blog/the-complete-guide-to-verifying-gems-with-rubygems-openpgp.html).
|
|
14
|
+
|
|
11
15
|
## Usage
|
|
12
16
|
|
|
13
17
|
Keccak supports 5 hash lengths: 224-bit, 256-bit, 384-bit, 512-bit and variable length. Variable length is not supported by this Ruby extension. Unless the user specifies otherwise, this Ruby extension assumes 512-bit.
|
data/digest-sha3.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.name = "digest-sha3"
|
|
5
5
|
s.version = Digest::SHA3::Version::STRING
|
|
6
6
|
s.summary = "The SHA-3 (Keccak) hash"
|
|
7
|
-
s.email = "
|
|
7
|
+
s.email = "software-signing@phusion.nl"
|
|
8
8
|
s.homepage = "https://github.com/phusion/digest-sha3-ruby"
|
|
9
9
|
s.description = "The SHA-3 (Keccak) hash."
|
|
10
10
|
s.authors = ["Hongli Lai (Phusion)", "Keccak authors"]
|
data/lib/digest/sha3/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: digest-sha3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,10 +10,10 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2013-03-11 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: The SHA-3 (Keccak) hash.
|
|
16
|
-
email:
|
|
16
|
+
email: software-signing@phusion.nl
|
|
17
17
|
executables: []
|
|
18
18
|
extensions:
|
|
19
19
|
- ext/digest/extconf.rb
|
|
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
57
|
version: '0'
|
|
58
58
|
requirements: []
|
|
59
59
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 1.8.
|
|
60
|
+
rubygems_version: 1.8.25
|
|
61
61
|
signing_key:
|
|
62
62
|
specification_version: 3
|
|
63
63
|
summary: The SHA-3 (Keccak) hash
|
metadata.gz.asc
ADDED