digest-sha3-patched 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +9 -0
- data/Makefile +18 -0
- data/README.md +52 -0
- data/digest-sha3-patched.gemspec +23 -0
- data/ext/digest/KeccakF-1600-int-set.h +6 -0
- data/ext/digest/KeccakF-1600-interface.h +46 -0
- data/ext/digest/KeccakF-1600-reference.c +300 -0
- data/ext/digest/KeccakNISTInterface.c +81 -0
- data/ext/digest/KeccakNISTInterface.h +70 -0
- data/ext/digest/KeccakSponge.c +266 -0
- data/ext/digest/KeccakSponge.h +76 -0
- data/ext/digest/brg_endian.h +142 -0
- data/ext/digest/displayIntermediateValues.c +117 -0
- data/ext/digest/displayIntermediateValues.h +29 -0
- data/ext/digest/extconf.rb +7 -0
- data/ext/digest/sha3.c +153 -0
- data/lib/digest/sha3/version.rb +7 -0
- metadata +63 -0
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: digest-sha3-patched
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Hongli Lai (Phusion)
|
8
|
+
- Keccak authors
|
9
|
+
- Chris Metcalfe
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2018-01-25 00:00:00.000000000 Z
|
14
|
+
dependencies: []
|
15
|
+
description: The SHA-3 (Keccak) hash.
|
16
|
+
email: chris.s.metcalfe@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions:
|
19
|
+
- ext/digest/extconf.rb
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- LICENSE
|
23
|
+
- Makefile
|
24
|
+
- README.md
|
25
|
+
- digest-sha3-patched.gemspec
|
26
|
+
- ext/digest/KeccakF-1600-int-set.h
|
27
|
+
- ext/digest/KeccakF-1600-interface.h
|
28
|
+
- ext/digest/KeccakF-1600-reference.c
|
29
|
+
- ext/digest/KeccakNISTInterface.c
|
30
|
+
- ext/digest/KeccakNISTInterface.h
|
31
|
+
- ext/digest/KeccakSponge.c
|
32
|
+
- ext/digest/KeccakSponge.h
|
33
|
+
- ext/digest/brg_endian.h
|
34
|
+
- ext/digest/displayIntermediateValues.c
|
35
|
+
- ext/digest/displayIntermediateValues.h
|
36
|
+
- ext/digest/extconf.rb
|
37
|
+
- ext/digest/sha3.c
|
38
|
+
- lib/digest/sha3/version.rb
|
39
|
+
homepage: https://github.com/teamhedg/digest-sha3-ruby
|
40
|
+
licenses:
|
41
|
+
- MIT
|
42
|
+
metadata: {}
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
require_paths:
|
46
|
+
- lib
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - "~>"
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '2.2'
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
requirements: []
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 2.6.14
|
60
|
+
signing_key:
|
61
|
+
specification_version: 4
|
62
|
+
summary: The SHA-3 (Keccak) hash
|
63
|
+
test_files: []
|