digest-keccak 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Digest
4
+ class Keccak
5
+ VERSION = '0.0.1'
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: digest-keccak
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Hongli Lai (Phusion)
8
+ - Keccak authors
9
+ autorequire:
10
+ bindir: exe
11
+ cert_chain: []
12
+ date: 2019-06-08 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: The Keccak (draft version of SHA-3) cryptographic hash function.
15
+ email:
16
+ - software-signing@phusion.nl
17
+ executables: []
18
+ extensions:
19
+ - ext/digest/extconf.rb
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE
23
+ - Makefile
24
+ - README.md
25
+ - digest-keccak.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/keccak.c
38
+ - lib/digest/keccak/version.rb
39
+ homepage: https://github.com/kotovalexarian/digest-keccak.rb
40
+ licenses:
41
+ - MIT
42
+ metadata:
43
+ homepage_uri: https://github.com/kotovalexarian/digest-keccak.rb
44
+ source_code_uri: https://github.com/kotovalexarian/digest-keccak.rb
45
+ bug_tracker_uri: https://github.com/kotovalexarian/digest-keccak.rb/issues
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.2'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubygems_version: 3.0.3
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: The Keccak cryptographic hash function.
65
+ test_files: []