This repository has been archived by the owner on Feb 2, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KeccakF-1600-reference.c
207 lines (172 loc) · 5.49 KB
/
KeccakF-1600-reference.c
1
2
3
4
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
The Keccak sponge function, designed by Guido Bertoni, Joan Daemen,
Michaël Peeters and Gilles Van Assche. For more information, feedback or
questions, please refer to our website: http://keccak.noekeon.org/
Implementation by the designers,
hereby denoted as "the implementer".
To the extent possible under law, the implementer has waived all copyright
and related or neighboring rights to the source code in this file.
http://creativecommons.org/publicdomain/zero/1.0/
*/
#include "KeccakF-1600-interface.h"
#include "endianness.h"
#include <stdio.h>
#include <string.h>
typedef unsigned char UINT8;
typedef unsigned long long int UINT64;
#define nrRounds 24
static UINT64 KeccakRoundConstants[nrRounds];
#define nrLanes 25
static unsigned int KeccakRhoOffsets[nrLanes];
/*
void KeccakPermutationOnWords(UINT64 *state);
void theta(UINT64 *A);
void rho(UINT64 *A);
void pi(UINT64 *A);
void chi(UINT64 *A);
void iota(UINT64 *A, unsigned int indexRound);
*/
#if ENDIANNESS_BE
static void fromBytesToWords(UINT64 *stateAsWords, const unsigned char *state) {
unsigned int i, j;
for (i = 0; i < (KeccakPermutationSize / 64); i++) {
stateAsWords[i] = 0;
for (j = 0; j < (64 / 8); j++)
stateAsWords[i] |= (UINT64)(state[i * (64 / 8) + j]) << (8 * j);
}
}
static void fromWordsToBytes(unsigned char *state, const UINT64 *stateAsWords) {
unsigned int i, j;
for (i = 0; i < (KeccakPermutationSize / 64); i++)
for (j = 0; j < (64 / 8); j++)
state[i * (64 / 8) + j] = (stateAsWords[i] >> (8 * j)) & 0xFF;
}
#endif
void KeccakPermutationAfterXor(unsigned char *state, const unsigned char *data,
unsigned int dataLengthInBytes) {
unsigned int i;
for (i = 0; i < dataLengthInBytes; i++)
state[i] ^= data[i];
KeccakPermutation(state);
}
#define index(x, y) (((x) % 5) + 5 * ((y) % 5))
#define ROL64(a, offset) \
((offset != 0) \
? ((((UINT64)a) << offset) ^ (((UINT64)a) >> (64 - offset))) \
: a)
static void theta(UINT64 *A) {
unsigned int x, y;
UINT64 C[5], D[5];
for (x = 0; x < 5; x++) {
C[x] = 0;
for (y = 0; y < 5; y++)
C[x] ^= A[index(x, y)];
}
for (x = 0; x < 5; x++)
D[x] = ROL64(C[(x + 1) % 5], 1) ^ C[(x + 4) % 5];
for (x = 0; x < 5; x++)
for (y = 0; y < 5; y++)
A[index(x, y)] ^= D[x];
}
static void rho(UINT64 *A) {
unsigned int x, y;
for (x = 0; x < 5; x++)
for (y = 0; y < 5; y++)
A[index(x, y)] =
ROL64(A[index(x, y)], KeccakRhoOffsets[index(x, y)]);
}
static void pi(UINT64 *A) {
unsigned int x, y;
UINT64 tempA[25];
for (x = 0; x < 5; x++)
for (y = 0; y < 5; y++)
tempA[index(x, y)] = A[index(x, y)];
for (x = 0; x < 5; x++)
for (y = 0; y < 5; y++)
A[index(0 * x + 1 * y, 2 * x + 3 * y)] = tempA[index(x, y)];
}
static void chi(UINT64 *A) {
unsigned int x, y;
UINT64 C[5];
for (y = 0; y < 5; y++) {
for (x = 0; x < 5; x++)
C[x] =
A[index(x, y)] ^ ((~A[index(x + 1, y)]) & A[index(x + 2, y)]);
for (x = 0; x < 5; x++)
A[index(x, y)] = C[x];
}
}
static void iota(UINT64 *A, unsigned int indexRound) {
A[index(0, 0)] ^= KeccakRoundConstants[indexRound];
}
static int LFSR86540(UINT8 *LFSR) {
int result = ((*LFSR) & 0x01) != 0;
if (((*LFSR) & 0x80) != 0)
// Primitive polynomial over GF(2): x^8+x^6+x^5+x^4+1
(*LFSR) = ((*LFSR) << 1) ^ 0x71;
else
(*LFSR) <<= 1;
return result;
}
void KeccakPermutationOnWords(UINT64 *state) {
unsigned int i;
for (i = 0; i < nrRounds; i++) {
theta(state);
rho(state);
pi(state);
chi(state);
iota(state, i);
}
}
void KeccakPermutation(unsigned char *state) {
#if ENDIANNESS_BE
UINT64 stateAsWords[KeccakPermutationSize / 64];
#endif
#if ENDIANNESS_LE
KeccakPermutationOnWords((UINT64 *)state);
#else
fromBytesToWords(stateAsWords, state);
KeccakPermutationOnWords(stateAsWords);
fromWordsToBytes(state, stateAsWords);
#endif
}
static void KeccakInitializeRoundConstants() {
UINT8 LFSRstate = 0x01;
unsigned int i, j, bitPosition;
for (i = 0; i < nrRounds; i++) {
KeccakRoundConstants[i] = 0;
for (j = 0; j < 7; j++) {
bitPosition = (1 << j) - 1; // 2^j-1
if (LFSR86540(&LFSRstate))
KeccakRoundConstants[i] ^= (UINT64)1 << bitPosition;
}
}
}
static void KeccakInitializeRhoOffsets() {
unsigned int x, y, t, newX, newY;
KeccakRhoOffsets[index(0, 0)] = 0;
x = 1;
y = 0;
for (t = 0; t < 24; t++) {
KeccakRhoOffsets[index(x, y)] = ((t + 1) * (t + 2) / 2) % 64;
newX = (0 * x + 1 * y) % 5;
newY = (2 * x + 3 * y) % 5;
x = newX;
y = newY;
}
}
void KeccakInitialize(void) {
KeccakInitializeRoundConstants();
KeccakInitializeRhoOffsets();
}
void KeccakInitializeState(unsigned char *state) {
memset(state, 0, KeccakPermutationSizeInBytes);
}
void KeccakAbsorb(unsigned char *state, const unsigned char *data,
unsigned int laneCount) {
KeccakPermutationAfterXor(state, data, laneCount * 8);
}
void KeccakExtract(const unsigned char *state, unsigned char *data,
unsigned int laneCount) {
memcpy(data, state, laneCount * 8);
}