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
@@ -0,0 +1,291 @@
1
+ /*
2
+ The eXtended Keccak Code Package (XKCP)
3
+ https://github.com/XKCP/XKCP
4
+
5
+ Implementation by Gilles Van Assche, hereby denoted as "the implementer".
6
+
7
+ For more information, feedback or questions, please refer to the Keccak Team website:
8
+ https://keccak.team/
9
+
10
+ To the extent possible under law, the implementer has waived all copyright
11
+ and related or neighboring rights to the source code in this file.
12
+ http://creativecommons.org/publicdomain/zero/1.0/
13
+
14
+ ---
15
+
16
+ This file contains macros that help make a PlSnP-compatible implementation by
17
+ serially falling back on a SnP-compatible implementation or on a PlSnP-compatible
18
+ implementation of lower parallism degree.
19
+
20
+ Please refer to PlSnP-documentation.h for more details.
21
+ */
22
+
23
+ /* expect PlSnP_baseParallelism, PlSnP_targetParallelism */
24
+ /* expect SnP_stateSizeInBytes, SnP_stateAlignment */
25
+ /* expect prefix */
26
+ /* expect SnP_* */
27
+
28
+ #define JOIN0(a, b) a ## b
29
+ #define JOIN(a, b) JOIN0(a, b)
30
+
31
+ #define PlSnP_StaticInitialize JOIN(prefix, _StaticInitialize)
32
+ #define PlSnP_InitializeAll JOIN(prefix, _InitializeAll)
33
+ #define PlSnP_AddByte JOIN(prefix, _AddByte)
34
+ #define PlSnP_AddBytes JOIN(prefix, _AddBytes)
35
+ #define PlSnP_AddLanesAll JOIN(prefix, _AddLanesAll)
36
+ #define PlSnP_OverwriteBytes JOIN(prefix, _OverwriteBytes)
37
+ #define PlSnP_OverwriteLanesAll JOIN(prefix, _OverwriteLanesAll)
38
+ #define PlSnP_OverwriteWithZeroes JOIN(prefix, _OverwriteWithZeroes)
39
+ #define PlSnP_ExtractBytes JOIN(prefix, _ExtractBytes)
40
+ #define PlSnP_ExtractLanesAll JOIN(prefix, _ExtractLanesAll)
41
+ #define PlSnP_ExtractAndAddBytes JOIN(prefix, _ExtractAndAddBytes)
42
+ #define PlSnP_ExtractAndAddLanesAll JOIN(prefix, _ExtractAndAddLanesAll)
43
+
44
+ #if (PlSnP_baseParallelism == 1)
45
+ #define SnP_stateSizeInBytes JOIN(SnP, _stateSizeInBytes)
46
+ #define SnP_stateAlignment JOIN(SnP, _stateAlignment)
47
+ #else
48
+ #define SnP_stateSizeInBytes JOIN(SnP, _statesSizeInBytes)
49
+ #define SnP_stateAlignment JOIN(SnP, _statesAlignment)
50
+ #endif
51
+ #define PlSnP_factor ((PlSnP_targetParallelism)/(PlSnP_baseParallelism))
52
+ #define SnP_stateOffset (((SnP_stateSizeInBytes+(SnP_stateAlignment-1))/SnP_stateAlignment)*SnP_stateAlignment)
53
+ #define stateWithIndex(i) ((unsigned char *)states+((i)*SnP_stateOffset))
54
+ #define stateWithIndexConst(i) ((const unsigned char *)states+((i)*SnP_stateOffset))
55
+
56
+ #define SnP_StaticInitialize JOIN(SnP, _StaticInitialize)
57
+ #define SnP_Initialize JOIN(SnP, _Initialize)
58
+ #define SnP_InitializeAll JOIN(SnP, _InitializeAll)
59
+ #define SnP_AddByte JOIN(SnP, _AddByte)
60
+ #define SnP_AddBytes JOIN(SnP, _AddBytes)
61
+ #define SnP_AddLanesAll JOIN(SnP, _AddLanesAll)
62
+ #define SnP_OverwriteBytes JOIN(SnP, _OverwriteBytes)
63
+ #define SnP_OverwriteLanesAll JOIN(SnP, _OverwriteLanesAll)
64
+ #define SnP_OverwriteWithZeroes JOIN(SnP, _OverwriteWithZeroes)
65
+ #define SnP_ExtractBytes JOIN(SnP, _ExtractBytes)
66
+ #define SnP_ExtractLanesAll JOIN(SnP, _ExtractLanesAll)
67
+ #define SnP_ExtractAndAddBytes JOIN(SnP, _ExtractAndAddBytes)
68
+ #define SnP_ExtractAndAddLanesAll JOIN(SnP, _ExtractAndAddLanesAll)
69
+
70
+ void PlSnP_StaticInitialize( void )
71
+ {
72
+ SnP_StaticInitialize();
73
+ }
74
+
75
+ void PlSnP_InitializeAll(void *states)
76
+ {
77
+ unsigned int i;
78
+
79
+ for(i=0; i<PlSnP_factor; i++)
80
+ #if (PlSnP_baseParallelism == 1)
81
+ SnP_Initialize(stateWithIndex(i));
82
+ #else
83
+ SnP_InitializeAll(stateWithIndex(i));
84
+ #endif
85
+ }
86
+
87
+ void PlSnP_AddByte(void *states, unsigned int instanceIndex, unsigned char byte, unsigned int offset)
88
+ {
89
+ #if (PlSnP_baseParallelism == 1)
90
+ SnP_AddByte(stateWithIndex(instanceIndex), byte, offset);
91
+ #else
92
+ SnP_AddByte(stateWithIndex(instanceIndex/PlSnP_baseParallelism), instanceIndex%PlSnP_baseParallelism, byte, offset);
93
+ #endif
94
+ }
95
+
96
+ void PlSnP_AddBytes(void *states, unsigned int instanceIndex, const unsigned char *data, unsigned int offset, unsigned int length)
97
+ {
98
+ #if (PlSnP_baseParallelism == 1)
99
+ SnP_AddBytes(stateWithIndex(instanceIndex), data, offset, length);
100
+ #else
101
+ SnP_AddBytes(stateWithIndex(instanceIndex/PlSnP_baseParallelism), instanceIndex%PlSnP_baseParallelism, data, offset, length);
102
+ #endif
103
+ }
104
+
105
+ void PlSnP_AddLanesAll(void *states, const unsigned char *data, unsigned int laneCount, unsigned int laneOffset)
106
+ {
107
+ unsigned int i;
108
+
109
+ for(i=0; i<PlSnP_factor; i++) {
110
+ #if (PlSnP_baseParallelism == 1)
111
+ SnP_AddBytes(stateWithIndex(i), data, 0, laneCount*SnP_laneLengthInBytes);
112
+ #else
113
+ SnP_AddLanesAll(stateWithIndex(i), data, laneCount, laneOffset);
114
+ #endif
115
+ data += PlSnP_baseParallelism*laneOffset*SnP_laneLengthInBytes;
116
+ }
117
+ }
118
+
119
+ void PlSnP_OverwriteBytes(void *states, unsigned int instanceIndex, const unsigned char *data, unsigned int offset, unsigned int length)
120
+ {
121
+ #if (PlSnP_baseParallelism == 1)
122
+ SnP_OverwriteBytes(stateWithIndex(instanceIndex), data, offset, length);
123
+ #else
124
+ SnP_OverwriteBytes(stateWithIndex(instanceIndex/PlSnP_baseParallelism), instanceIndex%PlSnP_baseParallelism, data, offset, length);
125
+ #endif
126
+ }
127
+
128
+ void PlSnP_OverwriteLanesAll(void *states, const unsigned char *data, unsigned int laneCount, unsigned int laneOffset)
129
+ {
130
+ unsigned int i;
131
+
132
+ for(i=0; i<PlSnP_factor; i++) {
133
+ #if (PlSnP_baseParallelism == 1)
134
+ SnP_OverwriteBytes(stateWithIndex(i), data, 0, laneCount*SnP_laneLengthInBytes);
135
+ #else
136
+ SnP_OverwriteLanesAll(stateWithIndex(i), data, laneCount, laneOffset);
137
+ #endif
138
+ data += PlSnP_baseParallelism*laneOffset*SnP_laneLengthInBytes;
139
+ }
140
+ }
141
+
142
+ void PlSnP_OverwriteWithZeroes(void *states, unsigned int instanceIndex, unsigned int byteCount)
143
+ {
144
+ #if (PlSnP_baseParallelism == 1)
145
+ SnP_OverwriteWithZeroes(stateWithIndex(instanceIndex), byteCount);
146
+ #else
147
+ SnP_OverwriteWithZeroes(stateWithIndex(instanceIndex/PlSnP_baseParallelism), instanceIndex%PlSnP_baseParallelism, byteCount);
148
+ #endif
149
+ }
150
+
151
+ void PlSnP_PermuteAll(void *states)
152
+ {
153
+ unsigned int i;
154
+
155
+ for(i=0; i<PlSnP_factor; i++) {
156
+ #if (PlSnP_baseParallelism == 1)
157
+ SnP_Permute(stateWithIndex(i));
158
+ #else
159
+ SnP_PermuteAll(stateWithIndex(i));
160
+ #endif
161
+ }
162
+ }
163
+
164
+ #if (defined(SnP_Permute_12rounds) || defined(SnP_PermuteAll_12rounds))
165
+ void PlSnP_PermuteAll_12rounds(void *states)
166
+ {
167
+ unsigned int i;
168
+
169
+ for(i=0; i<PlSnP_factor; i++) {
170
+ #if (PlSnP_baseParallelism == 1)
171
+ SnP_Permute_12rounds(stateWithIndex(i));
172
+ #else
173
+ SnP_PermuteAll_12rounds(stateWithIndex(i));
174
+ #endif
175
+ }
176
+ }
177
+ #endif
178
+
179
+ #if (defined(SnP_Permute_Nrounds) || defined(SnP_PermuteAll_6rounds))
180
+ void PlSnP_PermuteAll_6rounds(void *states)
181
+ {
182
+ unsigned int i;
183
+
184
+ for(i=0; i<PlSnP_factor; i++) {
185
+ #if (PlSnP_baseParallelism == 1)
186
+ SnP_Permute_Nrounds(stateWithIndex(i), 6);
187
+ #else
188
+ SnP_PermuteAll_6rounds(stateWithIndex(i));
189
+ #endif
190
+ }
191
+ }
192
+ #endif
193
+
194
+ #if (defined(SnP_Permute_Nrounds) || defined(SnP_PermuteAll_4rounds))
195
+ void PlSnP_PermuteAll_4rounds(void *states)
196
+ {
197
+ unsigned int i;
198
+
199
+ for(i=0; i<PlSnP_factor; i++) {
200
+ #if (PlSnP_baseParallelism == 1)
201
+ SnP_Permute_Nrounds(stateWithIndex(i), 4);
202
+ #else
203
+ SnP_PermuteAll_4rounds(stateWithIndex(i));
204
+ #endif
205
+ }
206
+ }
207
+ #endif
208
+
209
+ void PlSnP_ExtractBytes(void *states, unsigned int instanceIndex, unsigned char *data, unsigned int offset, unsigned int length)
210
+ {
211
+ #if (PlSnP_baseParallelism == 1)
212
+ SnP_ExtractBytes(stateWithIndex(instanceIndex), data, offset, length);
213
+ #else
214
+ SnP_ExtractBytes(stateWithIndex(instanceIndex/PlSnP_baseParallelism), instanceIndex%PlSnP_baseParallelism, data, offset, length);
215
+ #endif
216
+ }
217
+
218
+ void PlSnP_ExtractLanesAll(const void *states, unsigned char *data, unsigned int laneCount, unsigned int laneOffset)
219
+ {
220
+ unsigned int i;
221
+
222
+ for(i=0; i<PlSnP_factor; i++) {
223
+ #if (PlSnP_baseParallelism == 1)
224
+ SnP_ExtractBytes(stateWithIndexConst(i), data, 0, laneCount*SnP_laneLengthInBytes);
225
+ #else
226
+ SnP_ExtractLanesAll(stateWithIndex(i), data, laneCount, laneOffset);
227
+ #endif
228
+ data += laneOffset*SnP_laneLengthInBytes*PlSnP_baseParallelism;
229
+ }
230
+ }
231
+
232
+ void PlSnP_ExtractAndAddBytes(void *states, unsigned int instanceIndex, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length)
233
+ {
234
+ #if (PlSnP_baseParallelism == 1)
235
+ SnP_ExtractAndAddBytes(stateWithIndex(instanceIndex), input, output, offset, length);
236
+ #else
237
+ SnP_ExtractAndAddBytes(stateWithIndex(instanceIndex/PlSnP_baseParallelism), instanceIndex%PlSnP_baseParallelism, input, output, offset, length);
238
+ #endif
239
+ }
240
+
241
+ void PlSnP_ExtractAndAddLanesAll(const void *states, const unsigned char *input, unsigned char *output, unsigned int laneCount, unsigned int laneOffset)
242
+ {
243
+ unsigned int i;
244
+
245
+ for(i=0; i<PlSnP_factor; i++) {
246
+ #if (PlSnP_baseParallelism == 1)
247
+ SnP_ExtractAndAddBytes(stateWithIndexConst(i), input, output, 0, laneCount*SnP_laneLengthInBytes);
248
+ #else
249
+ SnP_ExtractAndAddLanesAll(stateWithIndex(i), input, output, laneCount, laneOffset);
250
+ #endif
251
+ input += laneOffset*SnP_laneLengthInBytes*PlSnP_baseParallelism;
252
+ output += laneOffset*SnP_laneLengthInBytes*PlSnP_baseParallelism;
253
+ }
254
+ }
255
+
256
+ #undef PlSnP_factor
257
+ #undef SnP_stateOffset
258
+ #undef stateWithIndex
259
+ #undef JOIN0
260
+ #undef JOIN
261
+ #undef PlSnP_StaticInitialize
262
+ #undef PlSnP_InitializeAll
263
+ #undef PlSnP_AddByte
264
+ #undef PlSnP_AddBytes
265
+ #undef PlSnP_AddLanesAll
266
+ #undef PlSnP_OverwriteBytes
267
+ #undef PlSnP_OverwriteLanesAll
268
+ #undef PlSnP_OverwriteWithZeroes
269
+ #undef PlSnP_PermuteAll
270
+ #undef PlSnP_ExtractBytes
271
+ #undef PlSnP_ExtractLanesAll
272
+ #undef PlSnP_ExtractAndAddBytes
273
+ #undef PlSnP_ExtractAndAddLanesAll
274
+ #undef SnP_stateAlignment
275
+ #undef SnP_stateSizeInBytes
276
+ #undef PlSnP_factor
277
+ #undef SnP_stateOffset
278
+ #undef stateWithIndex
279
+ #undef SnP_StaticInitialize
280
+ #undef SnP_Initialize
281
+ #undef SnP_InitializeAll
282
+ #undef SnP_AddByte
283
+ #undef SnP_AddBytes
284
+ #undef SnP_AddLanesAll
285
+ #undef SnP_OverwriteBytes
286
+ #undef SnP_OverwriteWithZeroes
287
+ #undef SnP_OverwriteLanesAll
288
+ #undef SnP_ExtractBytes
289
+ #undef SnP_ExtractLanesAll
290
+ #undef SnP_ExtractAndAddBytes
291
+ #undef SnP_ExtractAndAddLanesAll
@@ -0,0 +1,145 @@
1
+ /*
2
+ The eXtended Keccak Code Package (XKCP)
3
+ https://github.com/XKCP/XKCP
4
+
5
+ Implementation by Gilles Van Assche and Ronny Van Keer, hereby denoted as "the implementer".
6
+
7
+ For more information, feedback or questions, please refer to the Keccak Team website:
8
+ https://keccak.team/
9
+
10
+ To the extent possible under law, the implementer has waived all copyright
11
+ and related or neighboring rights to the source code in this file.
12
+ http://creativecommons.org/publicdomain/zero/1.0/
13
+
14
+ ---
15
+
16
+ This file contains macros that help implement a permutation in a SnP-compatible way.
17
+ It converts an implementation that implement state input/output functions
18
+ in a lane-oriented fashion (i.e., using SnP_AddLanes() and SnP_AddBytesInLane,
19
+ and similarly for Overwite, Extract and ExtractAndAdd) to the byte-oriented SnP.
20
+ Please refer to SnP-documentation.h for more details.
21
+ */
22
+
23
+ #ifndef _SnP_Relaned_h_
24
+ #define _SnP_Relaned_h_
25
+
26
+ #define SnP_AddBytes(state, data, offset, length, SnP_AddLanes, SnP_AddBytesInLane, SnP_laneLengthInBytes) \
27
+ { \
28
+ if ((offset) == 0) { \
29
+ SnP_AddLanes(state, data, (length)/SnP_laneLengthInBytes); \
30
+ if ((length)%SnP_laneLengthInBytes > 0) \
31
+ SnP_AddBytesInLane(state, \
32
+ (length)/SnP_laneLengthInBytes, \
33
+ (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
34
+ 0, \
35
+ (length)%SnP_laneLengthInBytes); \
36
+ } \
37
+ else { \
38
+ unsigned int _sizeLeft = (length); \
39
+ unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
40
+ unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
41
+ const unsigned char *_curData = (data); \
42
+ while(_sizeLeft > 0) { \
43
+ unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
44
+ if (_bytesInLane > _sizeLeft) \
45
+ _bytesInLane = _sizeLeft; \
46
+ SnP_AddBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
47
+ _sizeLeft -= _bytesInLane; \
48
+ _lanePosition++; \
49
+ _offsetInLane = 0; \
50
+ _curData += _bytesInLane; \
51
+ } \
52
+ } \
53
+ }
54
+
55
+ #define SnP_OverwriteBytes(state, data, offset, length, SnP_OverwriteLanes, SnP_OverwriteBytesInLane, SnP_laneLengthInBytes) \
56
+ { \
57
+ if ((offset) == 0) { \
58
+ SnP_OverwriteLanes(state, data, (length)/SnP_laneLengthInBytes); \
59
+ if ((length)%SnP_laneLengthInBytes > 0) \
60
+ SnP_OverwriteBytesInLane(state, \
61
+ (length)/SnP_laneLengthInBytes, \
62
+ (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
63
+ 0, \
64
+ (length)%SnP_laneLengthInBytes); \
65
+ } \
66
+ else { \
67
+ unsigned int _sizeLeft = (length); \
68
+ unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
69
+ unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
70
+ const unsigned char *_curData = (data); \
71
+ while(_sizeLeft > 0) { \
72
+ unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
73
+ if (_bytesInLane > _sizeLeft) \
74
+ _bytesInLane = _sizeLeft; \
75
+ SnP_OverwriteBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
76
+ _sizeLeft -= _bytesInLane; \
77
+ _lanePosition++; \
78
+ _offsetInLane = 0; \
79
+ _curData += _bytesInLane; \
80
+ } \
81
+ } \
82
+ }
83
+
84
+ #define SnP_ExtractBytes(state, data, offset, length, SnP_ExtractLanes, SnP_ExtractBytesInLane, SnP_laneLengthInBytes) \
85
+ { \
86
+ if ((offset) == 0) { \
87
+ SnP_ExtractLanes(state, data, (length)/SnP_laneLengthInBytes); \
88
+ if ((length)%SnP_laneLengthInBytes > 0) \
89
+ SnP_ExtractBytesInLane(state, \
90
+ (length)/SnP_laneLengthInBytes, \
91
+ (data)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
92
+ 0, \
93
+ (length)%SnP_laneLengthInBytes); \
94
+ } \
95
+ else { \
96
+ unsigned int _sizeLeft = (length); \
97
+ unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
98
+ unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
99
+ unsigned char *_curData = (data); \
100
+ while(_sizeLeft > 0) { \
101
+ unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
102
+ if (_bytesInLane > _sizeLeft) \
103
+ _bytesInLane = _sizeLeft; \
104
+ SnP_ExtractBytesInLane(state, _lanePosition, _curData, _offsetInLane, _bytesInLane); \
105
+ _sizeLeft -= _bytesInLane; \
106
+ _lanePosition++; \
107
+ _offsetInLane = 0; \
108
+ _curData += _bytesInLane; \
109
+ } \
110
+ } \
111
+ }
112
+
113
+ #define SnP_ExtractAndAddBytes(state, input, output, offset, length, SnP_ExtractAndAddLanes, SnP_ExtractAndAddBytesInLane, SnP_laneLengthInBytes) \
114
+ { \
115
+ if ((offset) == 0) { \
116
+ SnP_ExtractAndAddLanes(state, input, output, (length)/SnP_laneLengthInBytes); \
117
+ if ((length)%SnP_laneLengthInBytes > 0) \
118
+ SnP_ExtractAndAddBytesInLane(state, \
119
+ (length)/SnP_laneLengthInBytes, \
120
+ (input)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
121
+ (output)+((length)/SnP_laneLengthInBytes)*SnP_laneLengthInBytes, \
122
+ 0, \
123
+ (length)%SnP_laneLengthInBytes); \
124
+ } \
125
+ else { \
126
+ unsigned int _sizeLeft = (length); \
127
+ unsigned int _lanePosition = (offset)/SnP_laneLengthInBytes; \
128
+ unsigned int _offsetInLane = (offset)%SnP_laneLengthInBytes; \
129
+ const unsigned char *_curInput = (input); \
130
+ unsigned char *_curOutput = (output); \
131
+ while(_sizeLeft > 0) { \
132
+ unsigned int _bytesInLane = SnP_laneLengthInBytes - _offsetInLane; \
133
+ if (_bytesInLane > _sizeLeft) \
134
+ _bytesInLane = _sizeLeft; \
135
+ SnP_ExtractAndAddBytesInLane(state, _lanePosition, _curInput, _curOutput, _offsetInLane, _bytesInLane); \
136
+ _sizeLeft -= _bytesInLane; \
137
+ _lanePosition++; \
138
+ _offsetInLane = 0; \
139
+ _curInput += _bytesInLane; \
140
+ _curOutput += _bytesInLane; \
141
+ } \
142
+ } \
143
+ }
144
+
145
+ #endif
data/lib/sha3.rb CHANGED
@@ -1,37 +1,34 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'sha3_n'
4
- require 'sha3/version'
3
+ require 'sha3_digest'
5
4
 
6
- module SHA3
7
- class Digest
8
- # Based on 'OpenSSL for Ruby 2' project
9
- # Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
10
- alg = { sha224: 'SHA224', sha256: 'SHA256', sha384: 'SHA384', sha512: 'SHA512' }
5
+ alg = {
6
+ sha3_224: 'SHA3_224',
7
+ sha3_256: 'SHA3_256',
8
+ sha3_384: 'SHA3_384',
9
+ sha3_512: 'SHA3_512',
10
+ shake_128: 'SHAKE_128',
11
+ shake_256: 'SHAKE_256'
12
+ }
11
13
 
12
- def self.digest(name, data)
13
- super(data, name)
14
- end
15
-
16
- alg.each do |key, name|
17
- klass = Class.new(Digest) do
18
- define_method(:initialize) do |*data|
19
- if data.length > 1
20
- raise ArgumentError,
21
- "wrong number of arguments (#{data.length} for 1)"
22
- end
23
-
24
- super(key, data.first)
25
- end
26
- end
27
-
28
- singleton = (class << klass; self; end)
29
- singleton.class_eval do
30
- define_method(:digest) { |data| Digest.digest(key, data) }
31
- define_method(:hexdigest) { |data| Digest.hexdigest(key, data) }
14
+ alg.each do |key, name|
15
+ klass = Class.new(SHA3::Digest) do
16
+ define_method(:initialize) do |*data|
17
+ if data.length > 1
18
+ raise ArgumentError,
19
+ "wrong number of arguments (#{data.length} for 1)"
32
20
  end
33
21
 
34
- const_set(name, klass)
22
+ super(key, data.first)
35
23
  end
36
24
  end
25
+
26
+ singleton = (class << klass; self; end)
27
+ singleton.class_eval do
28
+ define_method(:digest) { |data| SHA3::Digest.digest(key, data) }
29
+ define_method(:hexdigest) { |data| SHA3::Digest.hexdigest(key, data) }
30
+ end
31
+
32
+ # Define the class under SHA3::Digest
33
+ SHA3::Digest.const_set(name, klass)
37
34
  end
data.tar.gz.sig CHANGED
Binary file