sha3 1.0.5 → 2.1.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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.clang-format +54 -0
- data/.document +3 -3
- data/.rdoc_options +11 -0
- data/.rspec +2 -2
- data/.rubocop.yml +8 -1
- data/CHANGELOG.md +23 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +1 -1
- data/README.md +185 -65
- data/Rakefile +12 -4
- data/certs/io+sha3@jsg.io.pem +26 -0
- data/doc/sha3.rb +83 -0
- data/ext/sha3/config.h +2 -2
- data/ext/sha3/digest.c +726 -169
- data/ext/sha3/digest.h +6 -35
- data/ext/sha3/extconf.rb +42 -38
- data/ext/sha3/kmac.c +504 -0
- data/ext/sha3/kmac.h +14 -0
- data/ext/sha3/lib/high/Keccak/KeccakDuplex.c +81 -0
- data/ext/sha3/lib/high/Keccak/KeccakDuplex.h +73 -0
- data/ext/sha3/lib/high/Keccak/KeccakDuplex.inc +201 -0
- data/ext/sha3/lib/high/Keccak/KeccakSponge.c +2 -18
- data/ext/sha3/lib/high/Keccak/KeccakSponge.h +4 -10
- data/ext/sha3/lib/high/Keccak/KeccakSponge.inc +27 -31
- data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.c +61 -0
- data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.h +67 -0
- data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.inc +128 -0
- data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.c +93 -0
- data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.h +599 -0
- data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.inc +573 -0
- data/ext/sha3/lib/high/common/Phases.h +25 -0
- data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros +19 -9
- data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +18 -12
- data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +28 -36
- data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +18 -12
- data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +28 -59
- data/ext/sha3/lib/low/common/PlSnP-Fallback.inc +291 -0
- data/ext/sha3/lib/low/common/SnP-Relaned.h +145 -0
- data/ext/sha3/sha3.c +28 -59
- data/ext/sha3/sha3.h +4 -13
- data/lib/constants.rb +5 -0
- data/lib/sha3.rb +25 -24
- data.tar.gz.sig +0 -0
- metadata +61 -127
- metadata.gz.sig +0 -0
- data/.yardopts +0 -1
- data/ChangeLog.rdoc +0 -27
- data/certs/johanns.pem +0 -25
- data/lib/sha3/doc.rb +0 -121
- data/lib/sha3/version.rb +0 -9
- data/sha3.gemspec +0 -54
- data/tests.sh +0 -29
@@ -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/ext/sha3/sha3.c
CHANGED
@@ -1,62 +1,31 @@
|
|
1
|
-
/* Copyright (c) 2012 - 2013 Johanns Gregorian <io+sha3@jsani.com> */
|
2
|
-
|
3
1
|
#include "sha3.h"
|
4
2
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
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;
|
3
|
+
#include "digest.h"
|
4
|
+
#include "kmac.h"
|
5
|
+
|
6
|
+
VALUE _sha3_module;
|
7
|
+
|
8
|
+
void Init_sha3_ext(void) {
|
9
|
+
/*
|
10
|
+
* Document-module: SHA3
|
11
|
+
*
|
12
|
+
* This module provides implementations of the SHA-3 family of cryptographic hash functions
|
13
|
+
* and the SHAKE extendable-output functions.
|
14
|
+
*
|
15
|
+
* It includes the SHA3::Digest and SHA3::KMAC classes, which offer methods for computing digests and keyed message
|
16
|
+
* authentication codes (KMAC).
|
17
|
+
*
|
18
|
+
* == Classes
|
19
|
+
* SHA3::Digest
|
20
|
+
* SHA3::Digest::DigestError
|
21
|
+
* SHA3::KMAC
|
22
|
+
* SHA3::KMAC::KMACError
|
23
|
+
*
|
24
|
+
*/
|
25
|
+
_sha3_module = rb_define_module("SHA3");
|
26
|
+
|
27
|
+
Init_sha3_digest();
|
28
|
+
Init_sha3_kmac();
|
29
|
+
|
30
|
+
return;
|
54
31
|
}
|
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
CHANGED
@@ -1,26 +1,17 @@
|
|
1
|
-
/* Copyright (c) 2012 - 2013 Johanns Gregorian <io+sha3@jsani.com> */
|
2
|
-
|
3
1
|
#ifndef _SHA3_H_
|
4
2
|
#define _SHA3_H_
|
5
3
|
|
6
4
|
#include <ruby.h>
|
7
|
-
|
8
|
-
#include "KeccakHash.h"
|
9
|
-
#include "digest.h"
|
5
|
+
#include <ruby/encoding.h>
|
10
6
|
|
11
7
|
#ifdef __cplusplus
|
12
|
-
extern "C"
|
13
|
-
{
|
8
|
+
extern "C" {
|
14
9
|
#endif
|
15
10
|
|
16
|
-
|
17
|
-
extern VALUE eSHA3Error;
|
18
|
-
|
19
|
-
int get_hlen(VALUE);
|
20
|
-
void Init_sha3_n(void);
|
11
|
+
extern VALUE _sha3_module;
|
21
12
|
|
22
13
|
#ifdef __cplusplus
|
23
14
|
}
|
24
15
|
#endif
|
25
16
|
|
26
|
-
#endif
|
17
|
+
#endif // _SHA3_H_
|
data/lib/constants.rb
ADDED
data/lib/sha3.rb
CHANGED
@@ -1,37 +1,38 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
4
|
-
require 'sha3/version'
|
3
|
+
require 'constants'
|
5
4
|
|
6
5
|
module SHA3
|
7
|
-
|
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' }
|
6
|
+
require 'sha3_ext'
|
11
7
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
raise ArgumentError,
|
21
|
-
"wrong number of arguments (#{data.length} for 1)"
|
22
|
-
end
|
8
|
+
alg = {
|
9
|
+
sha3_224: 'SHA3_224',
|
10
|
+
sha3_256: 'SHA3_256',
|
11
|
+
sha3_384: 'SHA3_384',
|
12
|
+
sha3_512: 'SHA3_512',
|
13
|
+
shake_128: 'SHAKE_128',
|
14
|
+
shake_256: 'SHAKE_256'
|
15
|
+
}
|
23
16
|
|
24
|
-
|
17
|
+
alg.each do |key, name|
|
18
|
+
klass = Class.new(Digest) do
|
19
|
+
define_method(:initialize) do |*data|
|
20
|
+
if data.length > 1
|
21
|
+
raise ArgumentError,
|
22
|
+
"wrong number of arguments (#{data.length} for 1)"
|
25
23
|
end
|
26
|
-
end
|
27
24
|
|
28
|
-
|
29
|
-
singleton.class_eval do
|
30
|
-
define_method(:digest) { |data| Digest.digest(key, data) }
|
31
|
-
define_method(:hexdigest) { |data| Digest.hexdigest(key, data) }
|
25
|
+
super(key, data.first)
|
32
26
|
end
|
27
|
+
end
|
33
28
|
|
34
|
-
|
29
|
+
singleton = (class << klass; self; end)
|
30
|
+
singleton.class_eval do
|
31
|
+
define_method(:digest) { |data| Digest.digest(key, data) }
|
32
|
+
define_method(:hexdigest) { |data| Digest.hexdigest(key, data) }
|
35
33
|
end
|
34
|
+
|
35
|
+
# Define the class under SHA3::Digest
|
36
|
+
SHA3::Digest.const_set(name, klass)
|
36
37
|
end
|
37
38
|
end
|
data.tar.gz.sig
CHANGED
Binary file
|