sha3 1.0.4 → 2.0.0

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.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.clang-format +54 -0
  4. data/.document +4 -3
  5. data/.rdoc_options +10 -0
  6. data/.rspec +2 -2
  7. data/.rubocop.yml +5 -1
  8. data/CHANGELOG.md +23 -0
  9. data/Gemfile +11 -0
  10. data/LICENSE.txt +1 -1
  11. data/README.md +153 -63
  12. data/Rakefile +9 -3
  13. data/certs/io+sha3@jsg.io.pem +26 -0
  14. data/doc/sha3.rb +81 -0
  15. data/ext/sha3/config.h +26 -0
  16. data/ext/sha3/digest.c +636 -164
  17. data/ext/sha3/digest.h +71 -35
  18. data/ext/sha3/extconf.rb +47 -13
  19. data/ext/sha3/lib/common/align.h +33 -0
  20. data/ext/sha3/{brg_endian.h → lib/common/brg_endian.h} +8 -7
  21. data/ext/sha3/{KeccakHash.c → lib/high/Keccak/FIPS202/KeccakHash.c} +26 -25
  22. data/ext/sha3/{KeccakHash.h → lib/high/Keccak/FIPS202/KeccakHash.h} +34 -19
  23. data/ext/sha3/lib/high/Keccak/KeccakDuplex.c +81 -0
  24. data/ext/sha3/lib/high/Keccak/KeccakDuplex.h +73 -0
  25. data/ext/sha3/lib/high/Keccak/KeccakDuplex.inc +201 -0
  26. data/ext/sha3/lib/high/Keccak/KeccakSponge.c +95 -0
  27. data/ext/sha3/lib/high/Keccak/KeccakSponge.h +70 -0
  28. data/ext/sha3/lib/high/Keccak/KeccakSponge.inc +312 -0
  29. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.c +61 -0
  30. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.h +67 -0
  31. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.inc +128 -0
  32. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.c +93 -0
  33. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.h +599 -0
  34. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.inc +573 -0
  35. data/ext/sha3/lib/high/common/Phases.h +25 -0
  36. data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros +758 -0
  37. data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-unrolling.macros +305 -0
  38. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +50 -0
  39. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference.h +23 -0
  40. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +617 -0
  41. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +50 -0
  42. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +413 -0
  43. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.h +23 -0
  44. data/ext/sha3/lib/low/common/PlSnP-Fallback.inc +291 -0
  45. data/ext/sha3/lib/low/common/SnP-Relaned.h +145 -0
  46. data/lib/sha3.rb +25 -28
  47. data.tar.gz.sig +0 -0
  48. metadata +73 -149
  49. metadata.gz.sig +0 -0
  50. data/.yardopts +0 -1
  51. data/ChangeLog.rdoc +0 -27
  52. data/certs/johanns.pem +0 -24
  53. data/ext/sha3/KeccakF-1600-interface.h +0 -40
  54. data/ext/sha3/KeccakSponge.c +0 -192
  55. data/ext/sha3/KeccakSponge.h +0 -113
  56. data/ext/sha3/Optimized64/KeccakF-1600-64.macros +0 -2199
  57. data/ext/sha3/Optimized64/KeccakF-1600-opt64-settings.h +0 -3
  58. data/ext/sha3/Optimized64/KeccakF-1600-opt64.c +0 -508
  59. data/ext/sha3/Optimized64/KeccakF-1600-unrolling.macros +0 -126
  60. data/ext/sha3/Optimized64/SnP-interface.h +0 -47
  61. data/ext/sha3/Reference/KeccakF-1600-reference.c +0 -311
  62. data/ext/sha3/Reference/KeccakF-reference.h +0 -26
  63. data/ext/sha3/Reference/SnP-FBWL-default.c +0 -96
  64. data/ext/sha3/Reference/SnP-FBWL-default.h +0 -26
  65. data/ext/sha3/Reference/SnP-interface.h +0 -42
  66. data/ext/sha3/Reference/displayIntermediateValues.c +0 -158
  67. data/ext/sha3/Reference/displayIntermediateValues.h +0 -34
  68. data/ext/sha3/SnP-Relaned.h +0 -249
  69. data/ext/sha3/sha3.c +0 -62
  70. data/ext/sha3/sha3.h +0 -26
  71. data/lib/sha3/doc.rb +0 -121
  72. data/lib/sha3/version.rb +0 -9
  73. data/sha3.gemspec +0 -53
  74. data/tests.sh +0 -28
@@ -1,249 +0,0 @@
1
- /*
2
- Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni,
3
- Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby
4
- denoted as "the implementer".
5
-
6
- For more information, feedback or questions, please refer to our websites:
7
- http://keccak.noekeon.org/
8
- http://keyak.noekeon.org/
9
- http://ketje.noekeon.org/
10
-
11
- To the extent possible under law, the implementer has waived all copyright
12
- and related or neighboring rights to the source code in this file.
13
- http://creativecommons.org/publicdomain/zero/1.0/
14
- */
15
-
16
- #ifndef _SnP_Relaned_h_
17
- #define _SnP_Relaned_h_
18
-
19
- /** Function to XOR data given as bytes into the state.
20
- * The bits to modify are restricted to be consecutive and to be in the same lane.
21
- * The bit positions that are affected by this function are
22
- * from @a lanePosition*(lane size in bits) + @a offset*8
23
- * to @a lanePosition*(lane size in bits) + @a offset*8 + @a length*8.
24
- * (The bit positions, the x,y,z coordinates and their link are defined in the "Keccak reference".)
25
- * @param state Pointer to the state.
26
- * @param lanePosition Index of the lane to be modified (x+5*y,
27
- * or bit position divided by the lane size).
28
- * @param data Pointer to the input data.
29
- * @param offset Offset in bytes within the lane.
30
- * @param length Number of bytes.
31
- * @pre 0 ≤ @a lanePosition < 25
32
- * @pre 0 ≤ @a offset < (lane size in bytes)
33
- * @pre 0 ≤ @a offset + @a length ≤ (lane size in bytes)
34
- */
35
- void SnP_XORBytesInLane(void *state, unsigned int lanePosition, const unsigned char *data, unsigned int offset, unsigned int length);
36
-
37
- /** Function to XOR data given as bytes into the state.
38
- * The bits to modify are restricted to start from the bit position 0 and
39
- * to span a whole number of lanes.
40
- * @param state Pointer to the state.
41
- * @param data Pointer to the input data.
42
- * @param laneCount The number of lanes, i.e., the length of the data
43
- * divided by the lane size.
44
- * @pre 0 ≤ @a laneCount ≤ 25
45
- */
46
- void SnP_XORLanes(void *state, const unsigned char *data, unsigned int laneCount);
47
-
48
- /** Function to overwrite data given as bytes into the state.
49
- * The bits to modify are restricted to be consecutive and to be in the same lane.
50
- * The bit positions that are affected by this function are
51
- * from @a lanePosition*(lane size in bits) + @a offset*8
52
- * to @a lanePosition*(lane size in bits) + @a offset*8 + @a length*8.
53
- * (The bit positions, the x,y,z coordinates and their link are defined in the "Keccak reference".)
54
- * @param state Pointer to the state.
55
- * @param lanePosition Index of the lane to be modified (x+5*y,
56
- * or bit position divided by the lane size).
57
- * @param data Pointer to the input data.
58
- * @param offset Offset in bytes within the lane.
59
- * @param length Number of bytes.
60
- * @pre 0 ≤ @a lanePosition < 25
61
- * @pre 0 ≤ @a offset < (lane size in bytes)
62
- * @pre 0 ≤ @a offset + @a length ≤ (lane size in bytes)
63
- */
64
- void SnP_OverwriteBytesInLane(void *state, unsigned int lanePosition, const unsigned char *data, unsigned int offset, unsigned int length);
65
-
66
- /** Function to overwrite data given as bytes into the state.
67
- * The bits to modify are restricted to start from the bit position 0 and
68
- * to span a whole number of lanes.
69
- * @param state Pointer to the state.
70
- * @param data Pointer to the input data.
71
- * @param laneCount The number of lanes, i.e., the length of the data
72
- * divided by the lane size.
73
- * @pre 0 ≤ @a laneCount ≤ 25
74
- */
75
- void SnP_OverwriteLanes(void *state, const unsigned char *data, unsigned int laneCount);
76
-
77
- /** Function to retrieve data from the state into bytes.
78
- * The bits to output are restricted to be consecutive and to be in the same lane.
79
- * The bit positions that are retrieved by this function are
80
- * from @a lanePosition*(lane size in bits) + @a offset*8
81
- * to @a lanePosition*(lane size in bits) + @a offset*8 + @a length*8.
82
- * (The bit positions, the x,y,z coordinates and their link are defined in the "Keccak reference".)
83
- * @param state Pointer to the state.
84
- * @param lanePosition Index of the lane to be read (x+5*y,
85
- * or bit position divided by the lane size).
86
- * @param data Pointer to the area where to store output data.
87
- * @param offset Offset in byte within the lane.
88
- * @param length Number of bytes.
89
- * @pre 0 ≤ @a lanePosition < 25
90
- * @pre 0 ≤ @a offset < (lane size in bytes)
91
- * @pre 0 ≤ @a offset + @a length ≤ (lane size in bytes)
92
- */
93
- void SnP_ExtractBytesInLane(const void *state, unsigned int lanePosition, unsigned char *data, unsigned int offset, unsigned int length);
94
-
95
- /** Function to retrieve data from the state into bytes.
96
- * The bits to output are restricted to start from the bit position 0 and
97
- * to span a whole number of lanes.
98
- * @param state Pointer to the state.
99
- * @param data Pointer to the area where to store output data.
100
- * @param laneCount The number of lanes, i.e., the length of the data
101
- * divided by the lane size.
102
- * @pre 0 ≤ @a laneCount ≤ 25
103
- */
104
- void SnP_ExtractLanes(const void *state, unsigned char *data, unsigned int laneCount);
105
-
106
- /** Function to retrieve data from the state into bytes and
107
- * to XOR them into the output buffer.
108
- * The bits to output are restricted to be consecutive and to be in the same lane.
109
- * The bit positions that are retrieved by this function are
110
- * from @a lanePosition*(lane size in bits) + @a offset*8
111
- * to @a lanePosition*(lane size in bits) + @a offset*8 + @a length*8.
112
- * (The bit positions, the x,y,z coordinates and their link are defined in the "Keccak reference".)
113
- * @param state Pointer to the state.
114
- * @param lanePosition Index of the lane to be read (x+5*y,
115
- * or bit position divided by the lane size).
116
- * @param data Pointer to the area where to XOR output data.
117
- * @param offset Offset in byte within the lane.
118
- * @param length Number of bytes.
119
- * @pre 0 ≤ @a lanePosition < 25
120
- * @pre 0 ≤ @a offset < (lane size in bytes)
121
- * @pre 0 ≤ @a offset + @a length ≤ (lane size in bytes)
122
- */
123
- void SnP_ExtractAndXORBytesInLane(const void *state, unsigned int lanePosition, unsigned char *data, unsigned int offset, unsigned int length);
124
-
125
- /** Function to retrieve data from the state into bytes and
126
- * to XOR them into the output buffer.
127
- * The bits to output are restricted to start from the bit position 0 and
128
- * to span a whole number of lanes.
129
- * @param state Pointer to the state.
130
- * @param data Pointer to the area where to XOR output data.
131
- * @param laneCount The number of lanes, i.e., the length of the data
132
- * divided by the lane size.
133
- * @pre 0 ≤ @a laneCount ≤ 25
134
- */
135
- void SnP_ExtractAndXORLanes(const void *state, unsigned char *data, unsigned int laneCount);
136
-
137
- #define SnP_XORBytes(state, data, offset, length) \
138
- { \
139
- if ((offset) == 0) { \
140
- SnP_XORLanes(state, data, (length)/SnP_laneLengthInBytes); \
141
- SnP_XORBytesInLane(state, \
142
- (length)/SnP_laneLengthInBytes, \
143
- (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
144
- 0, \
145
- (length)%SnP_laneLengthInBytes); \
146
- } \
147
- else { \
148
- unsigned int _sizeLeft = (length); \
149
- unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
150
- unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
151
- const unsigned char *_curData = (data); \
152
- while(_sizeLeft > 0) { \
153
- unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
154
- if (_bytesInLane > _sizeLeft) \
155
- _bytesInLane = _sizeLeft; \
156
- SnP_XORBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
157
- _sizeLeft -= _bytesInLane; \
158
- _lanePosition++; \
159
- _offsetInLane = 0; \
160
- _curData += _bytesInLane; \
161
- } \
162
- } \
163
- }
164
-
165
- #define SnP_OverwriteBytes(state, data, offset, length) \
166
- { \
167
- if ((offset) == 0) { \
168
- SnP_OverwriteLanes(state, data, (length)/SnP_laneLengthInBytes); \
169
- SnP_OverwriteBytesInLane(state, \
170
- (length)/SnP_laneLengthInBytes, \
171
- (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
172
- 0, \
173
- (length)%SnP_laneLengthInBytes); \
174
- } \
175
- else { \
176
- unsigned int _sizeLeft = (length); \
177
- unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
178
- unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
179
- const unsigned char *_curData = (data); \
180
- while(_sizeLeft > 0) { \
181
- unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
182
- if (_bytesInLane > _sizeLeft) \
183
- _bytesInLane = _sizeLeft; \
184
- SnP_OverwriteBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
185
- _sizeLeft -= _bytesInLane; \
186
- _lanePosition++; \
187
- _offsetInLane = 0; \
188
- _curData += _bytesInLane; \
189
- } \
190
- } \
191
- }
192
-
193
- #define SnP_ExtractBytes(state, data, offset, length) \
194
- { \
195
- if ((offset) == 0) { \
196
- SnP_ExtractLanes(state, data, (length)/SnP_laneLengthInBytes); \
197
- SnP_ExtractBytesInLane(state, \
198
- (length)/SnP_laneLengthInBytes, \
199
- (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
200
- 0, \
201
- (length)%SnP_laneLengthInBytes); \
202
- } \
203
- else { \
204
- unsigned int _sizeLeft = (length); \
205
- unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
206
- unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
207
- unsigned char *_curData = (data); \
208
- while(_sizeLeft > 0) { \
209
- unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
210
- if (_bytesInLane > _sizeLeft) \
211
- _bytesInLane = _sizeLeft; \
212
- SnP_ExtractBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
213
- _sizeLeft -= _bytesInLane; \
214
- _lanePosition++; \
215
- _offsetInLane = 0; \
216
- _curData += _bytesInLane; \
217
- } \
218
- } \
219
- }
220
-
221
- #define SnP_ExtractAndXORBytes(state, data, offset, length) \
222
- { \
223
- if ((offset) == 0) { \
224
- SnP_ExtractAndXORLanes(state, data, (length)/SnP_laneLengthInBytes); \
225
- SnP_ExtractAndXORBytesInLane(state, \
226
- (length)/SnP_laneLengthInBytes, \
227
- (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
228
- 0, \
229
- (length)%SnP_laneLengthInBytes); \
230
- } \
231
- else { \
232
- unsigned int _sizeLeft = (length); \
233
- unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
234
- unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
235
- unsigned char *_curData = (data); \
236
- while(_sizeLeft > 0) { \
237
- unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
238
- if (_bytesInLane > _sizeLeft) \
239
- _bytesInLane = _sizeLeft; \
240
- SnP_ExtractAndXORBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
241
- _sizeLeft -= _bytesInLane; \
242
- _lanePosition++; \
243
- _offsetInLane = 0; \
244
- _curData += _bytesInLane; \
245
- } \
246
- } \
247
- }
248
-
249
- #endif
data/ext/sha3/sha3.c DELETED
@@ -1,62 +0,0 @@
1
- /* Copyright (c) 2012 - 2013 Johanns Gregorian <io+sha3@jsani.com> */
2
-
3
- #include "sha3.h"
4
-
5
- VALUE mSHA3;
6
- VALUE eSHA3Error;
7
-
8
- int get_hlen(VALUE obj)
9
- {
10
- int hlen;
11
-
12
- if (TYPE(obj) == T_SYMBOL)
13
- {
14
- ID symid;
15
-
16
- symid = SYM2ID(obj);
17
-
18
- if (rb_intern("sha224") == symid)
19
- {
20
- hlen = 224;
21
- }
22
- else if (rb_intern("sha256") == symid)
23
- {
24
- hlen = 256;
25
- }
26
- else if (rb_intern("sha384") == symid)
27
- {
28
- hlen = 384;
29
- }
30
- else if (rb_intern("sha512") == symid)
31
- {
32
- hlen = 512;
33
- }
34
- else
35
- {
36
- rb_raise(eSHA3Error, "invalid hash bit symbol (should be: :sha224, :sha256, :sha384, or :sha512");
37
- }
38
- }
39
- else if (TYPE(obj) == T_FIXNUM)
40
- {
41
- hlen = NUM2INT(obj);
42
-
43
- if ((hlen != 224) && (hlen != 256) && (hlen != 384) && (hlen != 512))
44
- {
45
- rb_raise(rb_eArgError, "invalid hash bit length (should be: 224, 256, 384, or 512)");
46
- }
47
- }
48
- else
49
- {
50
- rb_raise(eSHA3Error, "unknown type value");
51
- }
52
-
53
- return hlen;
54
- }
55
-
56
- void Init_sha3_n()
57
- {
58
- mSHA3 = rb_define_module("SHA3");
59
- eSHA3Error = rb_define_class_under(mSHA3, "SHA3Error", rb_eStandardError);
60
-
61
- Init_sha3_n_digest();
62
- }
data/ext/sha3/sha3.h DELETED
@@ -1,26 +0,0 @@
1
- /* Copyright (c) 2012 - 2013 Johanns Gregorian <io+sha3@jsani.com> */
2
-
3
- #ifndef _SHA3_H_
4
- #define _SHA3_H_
5
-
6
- #include <ruby.h>
7
-
8
- #include "KeccakHash.h"
9
- #include "digest.h"
10
-
11
- #ifdef __cplusplus
12
- extern "C"
13
- {
14
- #endif
15
-
16
- extern VALUE mSHA3;
17
- extern VALUE eSHA3Error;
18
-
19
- int get_hlen(VALUE);
20
- void Init_sha3_n(void);
21
-
22
- #ifdef __cplusplus
23
- }
24
- #endif
25
-
26
- #endif
data/lib/sha3/doc.rb DELETED
@@ -1,121 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'digest'
4
-
5
- module SHA3
6
- # A sub-class of (MRI Ruby based) Digest::Class, it implements SHA3 (Keccak) digest algorithm.
7
- #
8
- # @note SHA3::Digest class provides a four sub-classes for the available hash bit lengths (types).
9
- # You can instantiate a new instance of Digest sub-class for a given type using the following sub-classes:
10
- #
11
- # SHA3::Digest::SHA224([data])
12
- # SHA3::Digest::SHA256([data])
13
- # SHA3::Digest::SHA384([data])
14
- # SHA3::Digest::SHA512([data])
15
- #
16
- # The [data] parameter is optional.
17
- class Digest < Digest::Class
18
- # Creates a Digest instance based on given hash bit length (type).
19
- #
20
- # @param type [Number, Symbol] optional parameter used to set hash bit length (type).
21
- # Valid options are:
22
- #
23
- # Number: 224, 256, 384, or 512
24
- # Symobols: :sha224, :sha256, :sha384, or :sha512
25
- #
26
- # Default value: 256 (bits)
27
- # @param data [String] optional parameter used to update initial instance state.
28
- # #
29
- # @return [Digest] self
30
- #
31
- # @example
32
- # digest = SHA3::Digest.new # => Defaults to 256 bits
33
- # digest = SHA3::Digest.new(224) # => Initialize a new 224 bit digest instance
34
- # digest = SHA3::Digest::SHA224 # => An alternate method for creating a digest class with 224 bit hash bit length
35
- def initialize(type, data)
36
- # See function: c_digest_init(...) in ext/sha3/_digest.c
37
- end
38
-
39
- # Updates, and recalculates Message Digest (state) with given data. If a message digest
40
- # is to be computed from several subsequent sources, then each may be passed individually
41
- # to the Digest instance.
42
- #
43
- # @param data [String] data to compute
44
- #
45
- # @return [Digest] self
46
- #
47
- # @example
48
- # digest = SHA3::Digest::SHA256.new
49
- # digest.update('hash me')
50
- # digest.update('me too')
51
- def update(data)
52
- # See function: c_digest_update(...) in ext/sha3/_digest.c
53
- end
54
-
55
- # Alias for update method
56
- alias << :update
57
-
58
- # Resets the Digest object to initial state, abandoning computed data.
59
- #
60
- # @return [Digest] self
61
- def reset
62
- # See function: c_digest_reset(...) in ext/sha3/_digest.c
63
- end
64
-
65
- # Returns message digest length in bytes.
66
- #
67
- # @return [Number] message length in bytes.
68
- #
69
- # @example
70
- # digest = SHA3::Digest::SHA256.new
71
- # digest.length # Result => 32 (or 256 bits)
72
- def length
73
- # See function: c_digest_length(...) in ext/sha3/_digest.c
74
- end
75
-
76
- # Returns digest block length in bytes.
77
- #
78
- # @return [Number] digest block length in bytes.
79
- #
80
- # @example
81
- # digest = SHA3::Digest::SHA384.new
82
- # digest.block_length # Result => 104
83
- def block_length
84
- # See function: c_digest_block_length(...) in ext/sha3/_digest.c
85
- end
86
-
87
- # Returns name of initialized digest
88
- #
89
- # @return [String] name
90
- def name
91
- # See function: c_digest_name(...) in ext/sha3/_digest.c
92
- end
93
-
94
- # Returns computed hash value for given hash type, and data in hex (string).
95
- #
96
- # @param type [Number, Symbol] See {#initialize} for valid type values.
97
- # @param data [String] data to compute hash value
98
- #
99
- # @return (String) computed hash as hex-encoded string
100
- #
101
- # @example
102
- # SHA3::Digest.hexdigest(256, 'compute me, please')
103
- # SHA3::Digest::SHA256.hexdigest('compute me, please') # => Alternate syntax
104
- def self.hexdigest(type, data); end
105
-
106
- # Returns computed hash value for given hash type, and data in bytes.
107
- #
108
- # @param type [Number, Symbol] See {#initialize} for valid type values.
109
- # @param data [String] data to compute hash value
110
- #
111
- # @return [String] computed hash in bytes
112
- #
113
- # @example
114
- # SHA3::Digest.digest(256, 'compute me, please')
115
- # SHA3::Digest::SHA256.digest('compute me, please') # => Alternate syntax
116
- def self.digest(type, data); end
117
- end
118
-
119
- class DigestError < StandardError
120
- end
121
- end
data/lib/sha3/version.rb DELETED
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module SHA3
4
- # sha3 release version
5
- VERSION = '1.0.4'
6
-
7
- # keccak version number
8
- KECCAK_VERSION = '4.0'
9
- end
data/sha3.gemspec DELETED
@@ -1,53 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/sha3/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'sha3'
7
- spec.version = SHA3::VERSION
8
-
9
- spec.authors = ['Johanns Gregorian']
10
- spec.email = ['io+sha3@jsg.io']
11
-
12
- spec.description = 'SHA3 for Ruby is a native (C) FIPS 202 compliant implementation of SHA3 (Keccak) cryptographic hashing algorithm.'
13
- spec.summary = 'SHA3 (FIPS 202) cryptographic hashing algorithm'
14
-
15
- spec.homepage = 'https://github.com/johanns/sha3'
16
- spec.license = 'MIT'
17
- spec.required_ruby_version = '>= 2.6.0'
18
-
19
- spec.metadata['changelog_uri'] = "#{spec.homepage}/CHANGELOG.md"
20
- spec.metadata['homepage_uri'] = spec.homepage
21
- spec.metadata['source_code_uri'] = spec.homepage
22
-
23
- # Specify which files should be added to the gem when it is released.
24
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
26
- `git ls-files -z`.split("\x0").reject do |f|
27
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
28
- end
29
- end
30
-
31
- spec.bindir = 'exe'
32
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
- spec.extensions = ['ext/sha3/extconf.rb']
34
- spec.require_paths = ['lib']
35
-
36
- # Uncomment to register a new dependency of your gem
37
- # spec.add_dependency "example-gem", "~> 1.0"
38
-
39
- # For more information and examples about making a new gem, check out our
40
- # guide at: https://bundler.io/guides/creating_gem.html
41
- spec.metadata['rubygems_mfa_required'] = 'true'
42
-
43
- spec.add_development_dependency('bundler', '~> 2.3')
44
- spec.add_development_dependency('rake', '~> 13.0')
45
- spec.add_development_dependency('rake-compiler', '~> 1.1')
46
- spec.add_development_dependency('rspec', '~> 3.11')
47
- spec.add_development_dependency('rubocop', '~> 1.25')
48
- spec.add_development_dependency('rubocop-rake', '~> 0.6')
49
- spec.add_development_dependency('rubocop-rspec', '~> 2.9')
50
-
51
- spec.cert_chain = ['certs/johanns.pem']
52
- spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME =~ /gem\z/
53
- end
data/tests.sh DELETED
@@ -1,28 +0,0 @@
1
- #!/bin/sh
2
-
3
- rm -fv spec/sha3_compute*.rb
4
- rm -fv spec/sha3_digest*.rb
5
-
6
- if [ -d "spec/data" ]
7
- then
8
- rm -rfv spec/data/*
9
- else
10
- mkdir "spec/data"
11
- fi
12
-
13
- pushd "spec/data"
14
-
15
- if [ -f "*.txt" ]
16
- then
17
- rm -v *.txt
18
- fi
19
-
20
- wget "https://raw.githubusercontent.com/XKCP/XKCP/master/tests/TestVectors/ShortMsgKAT_SHA3-224.txt"
21
- wget "https://raw.githubusercontent.com/XKCP/XKCP/master/tests/TestVectors/ShortMsgKAT_SHA3-256.txt"
22
- wget "https://raw.githubusercontent.com/XKCP/XKCP/master/tests/TestVectors/ShortMsgKAT_SHA3-384.txt"
23
- wget "https://raw.githubusercontent.com/XKCP/XKCP/master/tests/TestVectors/ShortMsgKAT_SHA3-512.txt"
24
-
25
- cd ".."
26
-
27
- ruby generate_tests.rb
28
- rake