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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.clang-format +54 -0
- data/.document +4 -3
- data/.rdoc_options +10 -0
- data/.rspec +2 -2
- data/.rubocop.yml +5 -1
- data/CHANGELOG.md +23 -0
- data/Gemfile +11 -0
- data/LICENSE.txt +1 -1
- data/README.md +153 -63
- data/Rakefile +9 -3
- data/certs/io+sha3@jsg.io.pem +26 -0
- data/doc/sha3.rb +81 -0
- data/ext/sha3/config.h +26 -0
- data/ext/sha3/digest.c +636 -164
- data/ext/sha3/digest.h +71 -35
- data/ext/sha3/extconf.rb +47 -13
- data/ext/sha3/lib/common/align.h +33 -0
- data/ext/sha3/{brg_endian.h → lib/common/brg_endian.h} +8 -7
- data/ext/sha3/{KeccakHash.c → lib/high/Keccak/FIPS202/KeccakHash.c} +26 -25
- data/ext/sha3/{KeccakHash.h → lib/high/Keccak/FIPS202/KeccakHash.h} +34 -19
- 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 +95 -0
- data/ext/sha3/lib/high/Keccak/KeccakSponge.h +70 -0
- data/ext/sha3/lib/high/Keccak/KeccakSponge.inc +312 -0
- 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 +758 -0
- data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-unrolling.macros +305 -0
- data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +50 -0
- data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference.h +23 -0
- data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +617 -0
- data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +50 -0
- data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +413 -0
- data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.h +23 -0
- data/ext/sha3/lib/low/common/PlSnP-Fallback.inc +291 -0
- data/ext/sha3/lib/low/common/SnP-Relaned.h +145 -0
- data/lib/sha3.rb +25 -28
- data.tar.gz.sig +0 -0
- metadata +73 -149
- metadata.gz.sig +0 -0
- data/.yardopts +0 -1
- data/ChangeLog.rdoc +0 -27
- data/certs/johanns.pem +0 -24
- data/ext/sha3/KeccakF-1600-interface.h +0 -40
- data/ext/sha3/KeccakSponge.c +0 -192
- data/ext/sha3/KeccakSponge.h +0 -113
- data/ext/sha3/Optimized64/KeccakF-1600-64.macros +0 -2199
- data/ext/sha3/Optimized64/KeccakF-1600-opt64-settings.h +0 -3
- data/ext/sha3/Optimized64/KeccakF-1600-opt64.c +0 -508
- data/ext/sha3/Optimized64/KeccakF-1600-unrolling.macros +0 -126
- data/ext/sha3/Optimized64/SnP-interface.h +0 -47
- data/ext/sha3/Reference/KeccakF-1600-reference.c +0 -311
- data/ext/sha3/Reference/KeccakF-reference.h +0 -26
- data/ext/sha3/Reference/SnP-FBWL-default.c +0 -96
- data/ext/sha3/Reference/SnP-FBWL-default.h +0 -26
- data/ext/sha3/Reference/SnP-interface.h +0 -42
- data/ext/sha3/Reference/displayIntermediateValues.c +0 -158
- data/ext/sha3/Reference/displayIntermediateValues.h +0 -34
- data/ext/sha3/SnP-Relaned.h +0 -249
- data/ext/sha3/sha3.c +0 -62
- data/ext/sha3/sha3.h +0 -26
- data/lib/sha3/doc.rb +0 -121
- data/lib/sha3/version.rb +0 -9
- data/sha3.gemspec +0 -53
- data/tests.sh +0 -28
@@ -0,0 +1,617 @@
|
|
1
|
+
/*
|
2
|
+
The eXtended Keccak Code Package (XKCP)
|
3
|
+
https://github.com/XKCP/XKCP
|
4
|
+
|
5
|
+
The Keccak-p permutations, designed by Guido Bertoni, Joan Daemen, Michaël Peeters and Gilles Van Assche.
|
6
|
+
|
7
|
+
Implementation by the designers, hereby denoted as "the implementer".
|
8
|
+
|
9
|
+
For more information, feedback or questions, please refer to the Keccak Team website:
|
10
|
+
https://keccak.team/
|
11
|
+
|
12
|
+
To the extent possible under law, the implementer has waived all copyright
|
13
|
+
and related or neighboring rights to the source code in this file.
|
14
|
+
http://creativecommons.org/publicdomain/zero/1.0/
|
15
|
+
|
16
|
+
---
|
17
|
+
|
18
|
+
This file implements Keccak-p[1600] in a SnP-compatible way.
|
19
|
+
Please refer to SnP-documentation.h for more details.
|
20
|
+
|
21
|
+
This implementation comes with KeccakP-1600-SnP.h in the same folder.
|
22
|
+
Please refer to LowLevel.build for the exact list of other files it must be combined with.
|
23
|
+
*/
|
24
|
+
|
25
|
+
#if DEBUG
|
26
|
+
#include <assert.h>
|
27
|
+
#endif
|
28
|
+
#include <stdint.h>
|
29
|
+
#include <stdio.h>
|
30
|
+
#include <string.h>
|
31
|
+
#include "brg_endian.h"
|
32
|
+
#ifdef KeccakReference
|
33
|
+
#include "displayIntermediateValues.h"
|
34
|
+
#endif
|
35
|
+
#include "KeccakP-1600-SnP.h"
|
36
|
+
|
37
|
+
#define maxNrRounds 24
|
38
|
+
#define nrLanes 25
|
39
|
+
|
40
|
+
#ifdef KeccakReference
|
41
|
+
|
42
|
+
static uint32_t KeccakRoundConstants[maxNrRounds][2];
|
43
|
+
static unsigned int KeccakRhoOffsets[nrLanes];
|
44
|
+
|
45
|
+
#endif
|
46
|
+
|
47
|
+
/* ---------------------------------------------------------------- */
|
48
|
+
|
49
|
+
void toBitInterleaving(uint32_t low, uint32_t high, uint32_t *even, uint32_t *odd);
|
50
|
+
void fromBitInterleaving(uint32_t even, uint32_t odd, uint32_t *low, uint32_t *high);
|
51
|
+
|
52
|
+
void toBitInterleaving(uint32_t low, uint32_t high, uint32_t *even, uint32_t *odd)
|
53
|
+
{
|
54
|
+
unsigned int i;
|
55
|
+
|
56
|
+
*even = 0;
|
57
|
+
*odd = 0;
|
58
|
+
for(i=0; i<64; i++) {
|
59
|
+
unsigned int inBit;
|
60
|
+
if (i < 32)
|
61
|
+
inBit = (low >> i) & 1;
|
62
|
+
else
|
63
|
+
inBit = (high >> (i-32)) & 1;
|
64
|
+
if ((i % 2) == 0)
|
65
|
+
*even |= inBit << (i/2);
|
66
|
+
else
|
67
|
+
*odd |= inBit << ((i-1)/2);
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
void fromBitInterleaving(uint32_t even, uint32_t odd, uint32_t *low, uint32_t *high)
|
72
|
+
{
|
73
|
+
unsigned int i;
|
74
|
+
|
75
|
+
*low = 0;
|
76
|
+
*high = 0;
|
77
|
+
for(i=0; i<64; i++) {
|
78
|
+
unsigned int inBit;
|
79
|
+
if ((i % 2) == 0)
|
80
|
+
inBit = (even >> (i/2)) & 1;
|
81
|
+
else
|
82
|
+
inBit = (odd >> ((i-1)/2)) & 1;
|
83
|
+
if (i < 32)
|
84
|
+
*low |= inBit << i;
|
85
|
+
else
|
86
|
+
*high |= inBit << (i-32);
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
#ifdef KeccakReference
|
91
|
+
|
92
|
+
/* ---------------------------------------------------------------- */
|
93
|
+
|
94
|
+
void KeccakP1600_InitializeRoundConstants(void);
|
95
|
+
void KeccakP1600_InitializeRhoOffsets(void);
|
96
|
+
static int LFSR86540(uint8_t *LFSR);
|
97
|
+
|
98
|
+
void KeccakP1600_StaticInitialize(void)
|
99
|
+
{
|
100
|
+
KeccakP1600_InitializeRoundConstants();
|
101
|
+
KeccakP1600_InitializeRhoOffsets();
|
102
|
+
}
|
103
|
+
|
104
|
+
void KeccakP1600_InitializeRoundConstants(void)
|
105
|
+
{
|
106
|
+
uint8_t LFSRstate = 0x01;
|
107
|
+
unsigned int i, j, bitPosition;
|
108
|
+
uint32_t low, high;
|
109
|
+
|
110
|
+
for(i=0; i<maxNrRounds; i++) {
|
111
|
+
low = high = 0;
|
112
|
+
for(j=0; j<7; j++) {
|
113
|
+
bitPosition = (1<<j)-1; /* 2^j-1 */
|
114
|
+
if (LFSR86540(&LFSRstate)) {
|
115
|
+
if (bitPosition < 32)
|
116
|
+
low ^= (uint32_t)1 << bitPosition;
|
117
|
+
else
|
118
|
+
high ^= (uint32_t)1 << (bitPosition-32);
|
119
|
+
}
|
120
|
+
}
|
121
|
+
toBitInterleaving(low, high, &(KeccakRoundConstants[i][0]), &(KeccakRoundConstants[i][1]));
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
void KeccakP1600_InitializeRhoOffsets(void)
|
126
|
+
{
|
127
|
+
unsigned int x, y, t, newX, newY;
|
128
|
+
|
129
|
+
KeccakRhoOffsets[0] = 0;
|
130
|
+
x = 1;
|
131
|
+
y = 0;
|
132
|
+
for(t=0; t<24; t++) {
|
133
|
+
KeccakRhoOffsets[5*y+x] = ((t+1)*(t+2)/2) % 64;
|
134
|
+
newX = (0*x+1*y) % 5;
|
135
|
+
newY = (2*x+3*y) % 5;
|
136
|
+
x = newX;
|
137
|
+
y = newY;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
static int LFSR86540(uint8_t *LFSR)
|
142
|
+
{
|
143
|
+
int result = ((*LFSR) & 0x01) != 0;
|
144
|
+
if (((*LFSR) & 0x80) != 0)
|
145
|
+
/* Primitive polynomial over GF(2): x^8+x^6+x^5+x^4+1 */
|
146
|
+
(*LFSR) = ((*LFSR) << 1) ^ 0x71;
|
147
|
+
else
|
148
|
+
(*LFSR) <<= 1;
|
149
|
+
return result;
|
150
|
+
}
|
151
|
+
|
152
|
+
#else
|
153
|
+
|
154
|
+
static const uint32_t KeccakRoundConstants[maxNrRounds][2] =
|
155
|
+
{
|
156
|
+
0x00000001, 0x00000000,
|
157
|
+
0x00000000, 0x00000089,
|
158
|
+
0x00000000, 0x8000008B,
|
159
|
+
0x00000000, 0x80008080,
|
160
|
+
0x00000001, 0x0000008B,
|
161
|
+
0x00000001, 0x00008000,
|
162
|
+
0x00000001, 0x80008088,
|
163
|
+
0x00000001, 0x80000082,
|
164
|
+
0x00000000, 0x0000000B,
|
165
|
+
0x00000000, 0x0000000A,
|
166
|
+
0x00000001, 0x00008082,
|
167
|
+
0x00000000, 0x00008003,
|
168
|
+
0x00000001, 0x0000808B,
|
169
|
+
0x00000001, 0x8000000B,
|
170
|
+
0x00000001, 0x8000008A,
|
171
|
+
0x00000001, 0x80000081,
|
172
|
+
0x00000000, 0x80000081,
|
173
|
+
0x00000000, 0x80000008,
|
174
|
+
0x00000000, 0x00000083,
|
175
|
+
0x00000000, 0x80008003,
|
176
|
+
0x00000001, 0x80008088,
|
177
|
+
0x00000000, 0x80000088,
|
178
|
+
0x00000001, 0x00008000,
|
179
|
+
0x00000000, 0x80008082
|
180
|
+
};
|
181
|
+
|
182
|
+
static const unsigned int KeccakRhoOffsets[nrLanes] =
|
183
|
+
{
|
184
|
+
0, 1, 62, 28, 27, 36, 44, 6, 55, 20, 3, 10, 43, 25, 39, 41, 45, 15, 21, 8, 18, 2, 61, 56, 14
|
185
|
+
};
|
186
|
+
|
187
|
+
#endif
|
188
|
+
|
189
|
+
/* ---------------------------------------------------------------- */
|
190
|
+
|
191
|
+
void KeccakP1600_Initialize(KeccakP1600_plain32_state *state)
|
192
|
+
{
|
193
|
+
memset(state, 0, 1600/8);
|
194
|
+
}
|
195
|
+
|
196
|
+
/* ---------------------------------------------------------------- */
|
197
|
+
|
198
|
+
void KeccakP1600_AddBytes(KeccakP1600_plain32_state *state, const unsigned char *data, unsigned int offset, unsigned int length);
|
199
|
+
|
200
|
+
void KeccakP1600_AddByte(KeccakP1600_plain32_state *state, unsigned char byte, unsigned int offset)
|
201
|
+
{
|
202
|
+
unsigned char data[1];
|
203
|
+
|
204
|
+
#if DEBUG
|
205
|
+
assert(offset < 200);
|
206
|
+
#endif
|
207
|
+
data[0] = byte;
|
208
|
+
KeccakP1600_AddBytes(state, data, offset, 1);
|
209
|
+
}
|
210
|
+
|
211
|
+
/* ---------------------------------------------------------------- */
|
212
|
+
|
213
|
+
void KeccakP1600_AddBytesInLane(KeccakP1600_plain32_state *state, unsigned int lanePosition, const unsigned char *data, unsigned int offset, unsigned int length)
|
214
|
+
{
|
215
|
+
if ((lanePosition < 25) && (offset < 8) && (offset+length <= 8)) {
|
216
|
+
uint8_t laneAsBytes[8];
|
217
|
+
uint32_t low, high;
|
218
|
+
uint32_t lane[2];
|
219
|
+
|
220
|
+
memset(laneAsBytes, 0, 8);
|
221
|
+
memcpy(laneAsBytes+offset, data, length);
|
222
|
+
low = laneAsBytes[0]
|
223
|
+
| ((uint32_t)(laneAsBytes[1]) << 8)
|
224
|
+
| ((uint32_t)(laneAsBytes[2]) << 16)
|
225
|
+
| ((uint32_t)(laneAsBytes[3]) << 24);
|
226
|
+
high = laneAsBytes[4]
|
227
|
+
| ((uint32_t)(laneAsBytes[5]) << 8)
|
228
|
+
| ((uint32_t)(laneAsBytes[6]) << 16)
|
229
|
+
| ((uint32_t)(laneAsBytes[7]) << 24);
|
230
|
+
toBitInterleaving(low, high, lane, lane+1);
|
231
|
+
state->A[lanePosition*2+0] ^= lane[0];
|
232
|
+
state->A[lanePosition*2+1] ^= lane[1];
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
void KeccakP1600_AddBytes(KeccakP1600_plain32_state *state, const unsigned char *data, unsigned int offset, unsigned int length)
|
237
|
+
{
|
238
|
+
unsigned int lanePosition = offset/8;
|
239
|
+
unsigned int offsetInLane = offset%8;
|
240
|
+
|
241
|
+
#if DEBUG
|
242
|
+
assert(offset < 200);
|
243
|
+
assert(offset+length <= 200);
|
244
|
+
#endif
|
245
|
+
while(length > 0) {
|
246
|
+
unsigned int bytesInLane = 8 - offsetInLane;
|
247
|
+
if (bytesInLane > length)
|
248
|
+
bytesInLane = length;
|
249
|
+
KeccakP1600_AddBytesInLane(state, lanePosition, data, offsetInLane, bytesInLane);
|
250
|
+
length -= bytesInLane;
|
251
|
+
lanePosition++;
|
252
|
+
offsetInLane = 0;
|
253
|
+
data += bytesInLane;
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
/* ---------------------------------------------------------------- */
|
258
|
+
|
259
|
+
void KeccakP1600_ExtractBytesInLane(const KeccakP1600_plain32_state *state, unsigned int lanePosition, unsigned char *data, unsigned int offset, unsigned int length);
|
260
|
+
|
261
|
+
void KeccakP1600_OverwriteBytesInLane(KeccakP1600_plain32_state *state, unsigned int lanePosition, const unsigned char *data, unsigned int offset, unsigned int length)
|
262
|
+
{
|
263
|
+
if ((lanePosition < 25) && (offset < 8) && (offset+length <= 8)) {
|
264
|
+
uint8_t laneAsBytes[8];
|
265
|
+
uint32_t low, high;
|
266
|
+
uint32_t lane[2];
|
267
|
+
|
268
|
+
KeccakP1600_ExtractBytesInLane(state, lanePosition, laneAsBytes, 0, 8);
|
269
|
+
memcpy(laneAsBytes+offset, data, length);
|
270
|
+
low = laneAsBytes[0]
|
271
|
+
| ((uint32_t)(laneAsBytes[1]) << 8)
|
272
|
+
| ((uint32_t)(laneAsBytes[2]) << 16)
|
273
|
+
| ((uint32_t)(laneAsBytes[3]) << 24);
|
274
|
+
high = laneAsBytes[4]
|
275
|
+
| ((uint32_t)(laneAsBytes[5]) << 8)
|
276
|
+
| ((uint32_t)(laneAsBytes[6]) << 16)
|
277
|
+
| ((uint32_t)(laneAsBytes[7]) << 24);
|
278
|
+
toBitInterleaving(low, high, lane, lane+1);
|
279
|
+
state->A[lanePosition*2+0] = lane[0];
|
280
|
+
state->A[lanePosition*2+1] = lane[1];
|
281
|
+
}
|
282
|
+
}
|
283
|
+
|
284
|
+
void KeccakP1600_OverwriteBytes(KeccakP1600_plain32_state *state, const unsigned char *data, unsigned int offset, unsigned int length)
|
285
|
+
{
|
286
|
+
unsigned int lanePosition = offset/8;
|
287
|
+
unsigned int offsetInLane = offset%8;
|
288
|
+
|
289
|
+
#if DEBUG
|
290
|
+
assert(offset < 200);
|
291
|
+
assert(offset+length <= 200);
|
292
|
+
#endif
|
293
|
+
while(length > 0) {
|
294
|
+
unsigned int bytesInLane = 8 - offsetInLane;
|
295
|
+
if (bytesInLane > length)
|
296
|
+
bytesInLane = length;
|
297
|
+
KeccakP1600_OverwriteBytesInLane(state, lanePosition, data, offsetInLane, bytesInLane);
|
298
|
+
length -= bytesInLane;
|
299
|
+
lanePosition++;
|
300
|
+
offsetInLane = 0;
|
301
|
+
data += bytesInLane;
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
305
|
+
/* ---------------------------------------------------------------- */
|
306
|
+
|
307
|
+
void KeccakP1600_OverwriteWithZeroes(KeccakP1600_plain32_state *state, unsigned int byteCount)
|
308
|
+
{
|
309
|
+
uint8_t laneAsBytes[8];
|
310
|
+
unsigned int lanePosition = 0;
|
311
|
+
|
312
|
+
#if DEBUG
|
313
|
+
assert(byteCount <= 200);
|
314
|
+
#endif
|
315
|
+
memset(laneAsBytes, 0, 8);
|
316
|
+
while(byteCount > 0) {
|
317
|
+
if (byteCount < 8) {
|
318
|
+
KeccakP1600_OverwriteBytesInLane(state, lanePosition, laneAsBytes, 0, byteCount);
|
319
|
+
byteCount = 0;
|
320
|
+
}
|
321
|
+
else {
|
322
|
+
state->A[lanePosition*2+0] = 0;
|
323
|
+
state->A[lanePosition*2+1] = 0;
|
324
|
+
byteCount -= 8;
|
325
|
+
lanePosition++;
|
326
|
+
}
|
327
|
+
}
|
328
|
+
}
|
329
|
+
|
330
|
+
/* ---------------------------------------------------------------- */
|
331
|
+
|
332
|
+
void KeccakP1600_PermutationOnWords(uint32_t *state, unsigned int nrRounds);
|
333
|
+
static void theta(uint32_t *A);
|
334
|
+
static void rho(uint32_t *A);
|
335
|
+
static void pi(uint32_t *A);
|
336
|
+
static void chi(uint32_t *A);
|
337
|
+
static void iota(uint32_t *A, unsigned int indexRound);
|
338
|
+
void KeccakP1600_ExtractBytes(const KeccakP1600_plain32_state *state, unsigned char *data, unsigned int offset, unsigned int length);
|
339
|
+
|
340
|
+
void KeccakP1600_Permute_Nrounds(KeccakP1600_plain32_state *state, unsigned int nrounds)
|
341
|
+
{
|
342
|
+
{
|
343
|
+
uint8_t stateAsBytes[1600/8];
|
344
|
+
KeccakP1600_ExtractBytes(state, stateAsBytes, 0, 1600/8);
|
345
|
+
#ifdef KeccakReference
|
346
|
+
displayStateAsBytes(1, "Input of permutation", stateAsBytes, 1600);
|
347
|
+
#endif
|
348
|
+
}
|
349
|
+
KeccakP1600_PermutationOnWords(state->A, nrounds);
|
350
|
+
{
|
351
|
+
uint8_t stateAsBytes[1600/8];
|
352
|
+
KeccakP1600_ExtractBytes(state, stateAsBytes, 0, 1600/8);
|
353
|
+
#ifdef KeccakReference
|
354
|
+
displayStateAsBytes(1, "State after permutation", stateAsBytes, 1600);
|
355
|
+
#endif
|
356
|
+
}
|
357
|
+
}
|
358
|
+
|
359
|
+
|
360
|
+
void KeccakP1600_Permute_12rounds(KeccakP1600_plain32_state *state)
|
361
|
+
{
|
362
|
+
{
|
363
|
+
uint8_t stateAsBytes[1600/8];
|
364
|
+
KeccakP1600_ExtractBytes(state, stateAsBytes, 0, 1600/8);
|
365
|
+
#ifdef KeccakReference
|
366
|
+
displayStateAsBytes(1, "Input of permutation", stateAsBytes, 1600);
|
367
|
+
#endif
|
368
|
+
}
|
369
|
+
KeccakP1600_PermutationOnWords(state->A, 12);
|
370
|
+
{
|
371
|
+
uint8_t stateAsBytes[1600/8];
|
372
|
+
KeccakP1600_ExtractBytes(state, stateAsBytes, 0, 1600/8);
|
373
|
+
#ifdef KeccakReference
|
374
|
+
displayStateAsBytes(1, "State after permutation", stateAsBytes, 1600);
|
375
|
+
#endif
|
376
|
+
}
|
377
|
+
}
|
378
|
+
|
379
|
+
void KeccakP1600_Permute_24rounds(KeccakP1600_plain32_state *state)
|
380
|
+
{
|
381
|
+
{
|
382
|
+
uint8_t stateAsBytes[1600/8];
|
383
|
+
KeccakP1600_ExtractBytes(state, stateAsBytes, 0, 1600/8);
|
384
|
+
#ifdef KeccakReference
|
385
|
+
displayStateAsBytes(1, "Input of permutation", stateAsBytes, 1600);
|
386
|
+
#endif
|
387
|
+
}
|
388
|
+
KeccakP1600_PermutationOnWords(state->A, 24);
|
389
|
+
{
|
390
|
+
uint8_t stateAsBytes[1600/8];
|
391
|
+
KeccakP1600_ExtractBytes(state, stateAsBytes, 0, 1600/8);
|
392
|
+
#ifdef KeccakReference
|
393
|
+
displayStateAsBytes(1, "State after permutation", stateAsBytes, 1600);
|
394
|
+
#endif
|
395
|
+
}
|
396
|
+
}
|
397
|
+
|
398
|
+
void KeccakP1600_PermutationOnWords(uint32_t *state, unsigned int nrRounds)
|
399
|
+
{
|
400
|
+
unsigned int i;
|
401
|
+
|
402
|
+
#ifdef KeccakReference
|
403
|
+
displayStateAs32bitWords(3, "Same, with lanes as pairs of 32-bit words (bit interleaving)", state);
|
404
|
+
#endif
|
405
|
+
|
406
|
+
for(i=(maxNrRounds-nrRounds); i<maxNrRounds; i++) {
|
407
|
+
#ifdef KeccakReference
|
408
|
+
displayRoundNumber(3, i);
|
409
|
+
#endif
|
410
|
+
|
411
|
+
theta(state);
|
412
|
+
#ifdef KeccakReference
|
413
|
+
displayStateAs32bitWords(3, "After theta", state);
|
414
|
+
#endif
|
415
|
+
|
416
|
+
rho(state);
|
417
|
+
#ifdef KeccakReference
|
418
|
+
displayStateAs32bitWords(3, "After rho", state);
|
419
|
+
#endif
|
420
|
+
|
421
|
+
pi(state);
|
422
|
+
#ifdef KeccakReference
|
423
|
+
displayStateAs32bitWords(3, "After pi", state);
|
424
|
+
#endif
|
425
|
+
|
426
|
+
chi(state);
|
427
|
+
#ifdef KeccakReference
|
428
|
+
displayStateAs32bitWords(3, "After chi", state);
|
429
|
+
#endif
|
430
|
+
|
431
|
+
iota(state, i);
|
432
|
+
#ifdef KeccakReference
|
433
|
+
displayStateAs32bitWords(3, "After iota", state);
|
434
|
+
#endif
|
435
|
+
}
|
436
|
+
}
|
437
|
+
|
438
|
+
#define index(x, y,z) ((((x)%5)+5*((y)%5))*2 + z)
|
439
|
+
#define ROL32(a, offset) ((offset != 0) ? ((((uint32_t)a) << offset) ^ (((uint32_t)a) >> (32-offset))) : a)
|
440
|
+
|
441
|
+
void ROL64(uint32_t inEven, uint32_t inOdd, uint32_t *outEven, uint32_t *outOdd, unsigned int offset)
|
442
|
+
{
|
443
|
+
if ((offset % 2) == 0) {
|
444
|
+
*outEven = ROL32(inEven, offset/2);
|
445
|
+
*outOdd = ROL32(inOdd, offset/2);
|
446
|
+
}
|
447
|
+
else {
|
448
|
+
*outEven = ROL32(inOdd, (offset+1)/2);
|
449
|
+
*outOdd = ROL32(inEven, (offset-1)/2);
|
450
|
+
}
|
451
|
+
}
|
452
|
+
|
453
|
+
static void theta(uint32_t *A)
|
454
|
+
{
|
455
|
+
unsigned int x, y, z;
|
456
|
+
uint32_t C[5][2], D[5][2];
|
457
|
+
|
458
|
+
for(x=0; x<5; x++) {
|
459
|
+
for(z=0; z<2; z++) {
|
460
|
+
C[x][z] = 0;
|
461
|
+
for(y=0; y<5; y++)
|
462
|
+
C[x][z] ^= A[index(x, y, z)];
|
463
|
+
}
|
464
|
+
}
|
465
|
+
for(x=0; x<5; x++) {
|
466
|
+
ROL64(C[(x+1)%5][0], C[(x+1)%5][1], &(D[x][0]), &(D[x][1]), 1);
|
467
|
+
for(z=0; z<2; z++)
|
468
|
+
D[x][z] ^= C[(x+4)%5][z];
|
469
|
+
}
|
470
|
+
for(x=0; x<5; x++)
|
471
|
+
for(y=0; y<5; y++)
|
472
|
+
for(z=0; z<2; z++)
|
473
|
+
A[index(x, y, z)] ^= D[x][z];
|
474
|
+
}
|
475
|
+
|
476
|
+
static void rho(uint32_t *A)
|
477
|
+
{
|
478
|
+
unsigned int x, y;
|
479
|
+
|
480
|
+
for(x=0; x<5; x++) for(y=0; y<5; y++)
|
481
|
+
ROL64(A[index(x, y, 0)], A[index(x, y, 1)], &(A[index(x, y, 0)]), &(A[index(x, y, 1)]), KeccakRhoOffsets[5*y+x]);
|
482
|
+
}
|
483
|
+
|
484
|
+
static void pi(uint32_t *A)
|
485
|
+
{
|
486
|
+
unsigned int x, y, z;
|
487
|
+
uint32_t tempA[50];
|
488
|
+
|
489
|
+
for(x=0; x<5; x++) for(y=0; y<5; y++) for(z=0; z<2; z++)
|
490
|
+
tempA[index(x, y, z)] = A[index(x, y, z)];
|
491
|
+
for(x=0; x<5; x++) for(y=0; y<5; y++) for(z=0; z<2; z++)
|
492
|
+
A[index(0*x+1*y, 2*x+3*y, z)] = tempA[index(x, y, z)];
|
493
|
+
}
|
494
|
+
|
495
|
+
static void chi(uint32_t *A)
|
496
|
+
{
|
497
|
+
unsigned int x, y, z;
|
498
|
+
uint32_t C[5][2];
|
499
|
+
|
500
|
+
for(y=0; y<5; y++) {
|
501
|
+
for(x=0; x<5; x++)
|
502
|
+
for(z=0; z<2; z++)
|
503
|
+
C[x][z] = A[index(x, y, z)] ^ ((~A[index(x+1, y, z)]) & A[index(x+2, y, z)]);
|
504
|
+
for(x=0; x<5; x++)
|
505
|
+
for(z=0; z<2; z++)
|
506
|
+
A[index(x, y, z)] = C[x][z];
|
507
|
+
}
|
508
|
+
}
|
509
|
+
|
510
|
+
static void iota(uint32_t *A, unsigned int indexRound)
|
511
|
+
{
|
512
|
+
A[index(0, 0, 0)] ^= KeccakRoundConstants[indexRound][0];
|
513
|
+
A[index(0, 0, 1)] ^= KeccakRoundConstants[indexRound][1];
|
514
|
+
}
|
515
|
+
|
516
|
+
/* ---------------------------------------------------------------- */
|
517
|
+
|
518
|
+
void KeccakP1600_ExtractBytesInLane(const KeccakP1600_plain32_state *state, unsigned int lanePosition, unsigned char *data, unsigned int offset, unsigned int length)
|
519
|
+
{
|
520
|
+
if ((lanePosition < 25) && (offset < 8) && (offset+length <= 8)) {
|
521
|
+
uint32_t lane[2];
|
522
|
+
uint8_t laneAsBytes[8];
|
523
|
+
fromBitInterleaving(state->A[lanePosition*2], state->A[lanePosition*2+1], lane, lane+1);
|
524
|
+
laneAsBytes[0] = lane[0] & 0xFF;
|
525
|
+
laneAsBytes[1] = (lane[0] >> 8) & 0xFF;
|
526
|
+
laneAsBytes[2] = (lane[0] >> 16) & 0xFF;
|
527
|
+
laneAsBytes[3] = (lane[0] >> 24) & 0xFF;
|
528
|
+
laneAsBytes[4] = lane[1] & 0xFF;
|
529
|
+
laneAsBytes[5] = (lane[1] >> 8) & 0xFF;
|
530
|
+
laneAsBytes[6] = (lane[1] >> 16) & 0xFF;
|
531
|
+
laneAsBytes[7] = (lane[1] >> 24) & 0xFF;
|
532
|
+
memcpy(data, laneAsBytes+offset, length);
|
533
|
+
}
|
534
|
+
}
|
535
|
+
|
536
|
+
void KeccakP1600_ExtractBytes(const KeccakP1600_plain32_state *state, unsigned char *data, unsigned int offset, unsigned int length)
|
537
|
+
{
|
538
|
+
unsigned int lanePosition = offset/8;
|
539
|
+
unsigned int offsetInLane = offset%8;
|
540
|
+
|
541
|
+
#if DEBUG
|
542
|
+
assert(offset < 200);
|
543
|
+
assert(offset+length <= 200);
|
544
|
+
#endif
|
545
|
+
while(length > 0) {
|
546
|
+
unsigned int bytesInLane = 8 - offsetInLane;
|
547
|
+
if (bytesInLane > length)
|
548
|
+
bytesInLane = length;
|
549
|
+
KeccakP1600_ExtractBytesInLane(state, lanePosition, data, offsetInLane, bytesInLane);
|
550
|
+
length -= bytesInLane;
|
551
|
+
lanePosition++;
|
552
|
+
offsetInLane = 0;
|
553
|
+
data += bytesInLane;
|
554
|
+
}
|
555
|
+
}
|
556
|
+
|
557
|
+
/* ---------------------------------------------------------------- */
|
558
|
+
|
559
|
+
void KeccakP1600_ExtractAndAddBytesInLane(const KeccakP1600_plain32_state *state, unsigned int lanePosition, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length)
|
560
|
+
{
|
561
|
+
if ((lanePosition < 25) && (offset < 8) && (offset+length <= 8)) {
|
562
|
+
uint8_t laneAsBytes[8];
|
563
|
+
unsigned int i;
|
564
|
+
|
565
|
+
KeccakP1600_ExtractBytesInLane(state, lanePosition, laneAsBytes, offset, length);
|
566
|
+
for(i=0; i<length; i++)
|
567
|
+
output[i] = input[i] ^ laneAsBytes[i];
|
568
|
+
}
|
569
|
+
}
|
570
|
+
|
571
|
+
void KeccakP1600_ExtractAndAddBytes(const KeccakP1600_plain32_state *state, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length)
|
572
|
+
{
|
573
|
+
unsigned int lanePosition = offset/8;
|
574
|
+
unsigned int offsetInLane = offset%8;
|
575
|
+
|
576
|
+
#if DEBUG
|
577
|
+
assert(offset < 200);
|
578
|
+
assert(offset+length <= 200);
|
579
|
+
#endif
|
580
|
+
while(length > 0) {
|
581
|
+
unsigned int bytesInLane = 8 - offsetInLane;
|
582
|
+
if (bytesInLane > length)
|
583
|
+
bytesInLane = length;
|
584
|
+
KeccakP1600_ExtractAndAddBytesInLane(state, lanePosition, input, output, offsetInLane, bytesInLane);
|
585
|
+
length -= bytesInLane;
|
586
|
+
lanePosition++;
|
587
|
+
offsetInLane = 0;
|
588
|
+
input += bytesInLane;
|
589
|
+
output += bytesInLane;
|
590
|
+
}
|
591
|
+
}
|
592
|
+
|
593
|
+
/* ---------------------------------------------------------------- */
|
594
|
+
|
595
|
+
void KeccakP1600_DisplayRoundConstants(FILE *f)
|
596
|
+
{
|
597
|
+
unsigned int i;
|
598
|
+
|
599
|
+
for(i=0; i<maxNrRounds; i++) {
|
600
|
+
fprintf(f, "RC[%02i][0][0] = ", i);
|
601
|
+
fprintf(f, "%08X:%08X", (unsigned int)(KeccakRoundConstants[i][0]), (unsigned int)(KeccakRoundConstants[i][1]));
|
602
|
+
fprintf(f, "\n");
|
603
|
+
}
|
604
|
+
fprintf(f, "\n");
|
605
|
+
}
|
606
|
+
|
607
|
+
void KeccakP1600_DisplayRhoOffsets(FILE *f)
|
608
|
+
{
|
609
|
+
unsigned int x, y;
|
610
|
+
|
611
|
+
for(y=0; y<5; y++) for(x=0; x<5; x++) {
|
612
|
+
fprintf(f, "RhoOffset[%i][%i] = ", x, y);
|
613
|
+
fprintf(f, "%2i", KeccakRhoOffsets[5*y+x]);
|
614
|
+
fprintf(f, "\n");
|
615
|
+
}
|
616
|
+
fprintf(f, "\n");
|
617
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
/*
|
2
|
+
The eXtended Keccak Code Package (XKCP)
|
3
|
+
https://github.com/XKCP/XKCP
|
4
|
+
|
5
|
+
The Keccak-p permutations, designed by Guido Bertoni, Joan Daemen, Michaël Peeters and Gilles Van Assche.
|
6
|
+
|
7
|
+
Implementation by the designers, hereby denoted as "the implementer".
|
8
|
+
|
9
|
+
For more information, feedback or questions, please refer to the Keccak Team website:
|
10
|
+
https://keccak.team/
|
11
|
+
|
12
|
+
To the extent possible under law, the implementer has waived all copyright
|
13
|
+
and related or neighboring rights to the source code in this file.
|
14
|
+
http://creativecommons.org/publicdomain/zero/1.0/
|
15
|
+
|
16
|
+
---
|
17
|
+
|
18
|
+
Please refer to SnP-documentation.h for more details.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef _KeccakP_1600_SnP_h_
|
22
|
+
#define _KeccakP_1600_SnP_h_
|
23
|
+
|
24
|
+
#include <stdint.h>
|
25
|
+
|
26
|
+
typedef struct {
|
27
|
+
uint8_t A[200];
|
28
|
+
} KeccakP1600_plain8_state;
|
29
|
+
|
30
|
+
typedef KeccakP1600_plain8_state KeccakP1600_state;
|
31
|
+
|
32
|
+
#define KeccakP1600_implementation "64-bit reference implementation"
|
33
|
+
|
34
|
+
#ifdef KeccakReference
|
35
|
+
void KeccakP1600_StaticInitialize( void );
|
36
|
+
#else
|
37
|
+
#define KeccakP1600_StaticInitialize()
|
38
|
+
#endif
|
39
|
+
void KeccakP1600_Initialize(KeccakP1600_plain8_state *state);
|
40
|
+
void KeccakP1600_AddByte(KeccakP1600_plain8_state *state, unsigned char data, unsigned int offset);
|
41
|
+
void KeccakP1600_AddBytes(KeccakP1600_plain8_state *state, const unsigned char *data, unsigned int offset, unsigned int length);
|
42
|
+
void KeccakP1600_OverwriteBytes(KeccakP1600_plain8_state *state, const unsigned char *data, unsigned int offset, unsigned int length);
|
43
|
+
void KeccakP1600_OverwriteWithZeroes(KeccakP1600_plain8_state *state, unsigned int byteCount);
|
44
|
+
void KeccakP1600_Permute_Nrounds(KeccakP1600_plain8_state *state, unsigned int nrounds);
|
45
|
+
void KeccakP1600_Permute_12rounds(KeccakP1600_plain8_state *state);
|
46
|
+
void KeccakP1600_Permute_24rounds(KeccakP1600_plain8_state *state);
|
47
|
+
void KeccakP1600_ExtractBytes(const KeccakP1600_plain8_state *state, unsigned char *data, unsigned int offset, unsigned int length);
|
48
|
+
void KeccakP1600_ExtractAndAddBytes(const KeccakP1600_plain8_state *state, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length);
|
49
|
+
|
50
|
+
#endif
|