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,201 @@
|
|
1
|
+
/*
|
2
|
+
The eXtended Keccak Code Package (XKCP)
|
3
|
+
https://github.com/XKCP/XKCP
|
4
|
+
|
5
|
+
Keccak, 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
|
+
#define JOIN0(a, b) a ## b
|
18
|
+
#define JOIN(a, b) JOIN0(a, b)
|
19
|
+
|
20
|
+
#define DuplexInstance JOIN(prefix, _DuplexInstance)
|
21
|
+
#define DuplexInitialize JOIN(prefix, _DuplexInitialize)
|
22
|
+
#define Duplexing JOIN(prefix, _Duplexing)
|
23
|
+
#define DuplexingFeedPartialInput JOIN(prefix, _DuplexingFeedPartialInput)
|
24
|
+
#define DuplexingFeedZeroes JOIN(prefix, _DuplexingFeedZeroes)
|
25
|
+
#define DuplexingOverwritePartialInput JOIN(prefix, _DuplexingOverwritePartialInput)
|
26
|
+
#define DuplexingOverwriteWithZeroes JOIN(prefix, _DuplexingOverwriteWithZeroes)
|
27
|
+
#define DuplexingGetFurtherOutput JOIN(prefix, _DuplexingGetFurtherOutput)
|
28
|
+
#define DuplexingGetFurtherOutputAndAdd JOIN(prefix, _DuplexingGetFurtherOutputAndAdd)
|
29
|
+
|
30
|
+
#define SnP_StaticInitialize JOIN(SnP, _StaticInitialize)
|
31
|
+
#define SnP_Initialize JOIN(SnP, _Initialize)
|
32
|
+
#define SnP_AddByte JOIN(SnP, _AddByte)
|
33
|
+
#define SnP_AddBytes JOIN(SnP, _AddBytes)
|
34
|
+
#define SnP_OverwriteBytes JOIN(SnP, _OverwriteBytes)
|
35
|
+
#define SnP_OverwriteWithZeroes JOIN(SnP, _OverwriteWithZeroes)
|
36
|
+
#define SnP_ExtractBytes JOIN(SnP, _ExtractBytes)
|
37
|
+
#define SnP_ExtractAndAddBytes JOIN(SnP, _ExtractAndAddBytes)
|
38
|
+
|
39
|
+
int DuplexInitialize(DuplexInstance *instance, unsigned int rate, unsigned int capacity)
|
40
|
+
{
|
41
|
+
if (rate+capacity != SnP_width)
|
42
|
+
return 1;
|
43
|
+
if ((rate <= 2) || (rate > SnP_width))
|
44
|
+
return 1;
|
45
|
+
SnP_StaticInitialize();
|
46
|
+
instance->rate = rate;
|
47
|
+
SnP_Initialize(&instance->state);
|
48
|
+
instance->byteInputIndex = 0;
|
49
|
+
instance->byteOutputIndex = (instance->rate+7)/8;
|
50
|
+
return 0;
|
51
|
+
}
|
52
|
+
|
53
|
+
int Duplexing(DuplexInstance *instance, const unsigned char *sigmaBegin, unsigned int sigmaBeginByteLen, unsigned char *Z, unsigned int ZByteLen, unsigned char delimitedSigmaEnd)
|
54
|
+
{
|
55
|
+
const unsigned int rho_max = instance->rate - 2;
|
56
|
+
|
57
|
+
if (delimitedSigmaEnd == 0)
|
58
|
+
return 1;
|
59
|
+
if (sigmaBeginByteLen > rho_max/8)
|
60
|
+
return 1;
|
61
|
+
if ((instance->byteInputIndex+sigmaBeginByteLen)*8 > rho_max)
|
62
|
+
return 1;
|
63
|
+
if (rho_max - sigmaBeginByteLen*8 < 7) {
|
64
|
+
unsigned int maxBitsInDelimitedSigmaEnd = rho_max - sigmaBeginByteLen*8;
|
65
|
+
if (delimitedSigmaEnd >= (1 << (maxBitsInDelimitedSigmaEnd+1)))
|
66
|
+
return 1;
|
67
|
+
}
|
68
|
+
if (ZByteLen > (instance->rate+7)/8)
|
69
|
+
return 1; /* The output length must not be greater than the rate (rounded up to a byte) */
|
70
|
+
|
71
|
+
SnP_AddBytes(&instance->state, sigmaBegin, instance->byteInputIndex, sigmaBeginByteLen);
|
72
|
+
#ifdef KeccakReference
|
73
|
+
{
|
74
|
+
unsigned char block[SnP_width/8];
|
75
|
+
memcpy(block, sigmaBegin, sigmaBeginByteLen);
|
76
|
+
block[sigmaBeginByteLen] = delimitedSigmaEnd;
|
77
|
+
memset(block+sigmaBeginByteLen+1, 0, sizeof(block)-sigmaBeginByteLen-1);
|
78
|
+
block[(instance->rate-1)/8] |= 1 << ((instance->rate-1) % 8);
|
79
|
+
displayBytes(1, "Block to be absorbed (after padding)", block, (instance->rate+7)/8);
|
80
|
+
}
|
81
|
+
#endif
|
82
|
+
|
83
|
+
/* Last few bits, whose delimiter coincides with first bit of padding */
|
84
|
+
SnP_AddByte(&instance->state, delimitedSigmaEnd, instance->byteInputIndex+sigmaBeginByteLen);
|
85
|
+
/* Second bit of padding */
|
86
|
+
SnP_AddByte(&instance->state, (unsigned char)1 << ((instance->rate - 1)%8), (instance->rate - 1)/8);
|
87
|
+
SnP_Permute(&instance->state);
|
88
|
+
SnP_ExtractBytes(&instance->state, Z, 0, ZByteLen);
|
89
|
+
|
90
|
+
if (ZByteLen*8 > instance->rate) {
|
91
|
+
unsigned char mask = (unsigned char)(1 << (instance->rate % 8)) - 1;
|
92
|
+
Z[ZByteLen-1] &= mask;
|
93
|
+
}
|
94
|
+
|
95
|
+
instance->byteInputIndex = 0;
|
96
|
+
instance->byteOutputIndex = ZByteLen;
|
97
|
+
|
98
|
+
return 0;
|
99
|
+
}
|
100
|
+
|
101
|
+
int DuplexingFeedPartialInput(DuplexInstance *instance, const unsigned char *input, unsigned int inputByteLen)
|
102
|
+
{
|
103
|
+
const unsigned int rho_max = instance->rate - 2;
|
104
|
+
|
105
|
+
if (inputByteLen > rho_max/8)
|
106
|
+
return 1;
|
107
|
+
if ((instance->byteInputIndex+inputByteLen)*8 > rho_max)
|
108
|
+
return 1;
|
109
|
+
|
110
|
+
SnP_AddBytes(&instance->state, input, instance->byteInputIndex, inputByteLen);
|
111
|
+
instance->byteInputIndex += inputByteLen;
|
112
|
+
return 0;
|
113
|
+
}
|
114
|
+
|
115
|
+
int DuplexingFeedZeroes(DuplexInstance *instance, unsigned int inputByteLen)
|
116
|
+
{
|
117
|
+
const unsigned int rho_max = instance->rate - 2;
|
118
|
+
|
119
|
+
if (inputByteLen > rho_max/8)
|
120
|
+
return 1;
|
121
|
+
if ((instance->byteInputIndex+inputByteLen)*8 > rho_max)
|
122
|
+
return 1;
|
123
|
+
|
124
|
+
instance->byteInputIndex += inputByteLen;
|
125
|
+
return 0;
|
126
|
+
}
|
127
|
+
|
128
|
+
int DuplexingOverwritePartialInput(DuplexInstance *instance, const unsigned char *input, unsigned int inputByteLen)
|
129
|
+
{
|
130
|
+
const unsigned int rho_max = instance->rate - 2;
|
131
|
+
|
132
|
+
if (inputByteLen > rho_max/8)
|
133
|
+
return 1;
|
134
|
+
if ((instance->byteInputIndex+inputByteLen)*8 > rho_max)
|
135
|
+
return 1;
|
136
|
+
|
137
|
+
SnP_OverwriteBytes(&instance->state, input, instance->byteInputIndex, inputByteLen);
|
138
|
+
instance->byteInputIndex += inputByteLen;
|
139
|
+
return 0;
|
140
|
+
}
|
141
|
+
|
142
|
+
int DuplexingOverwriteWithZeroes(DuplexInstance *instance, unsigned int inputByteLen)
|
143
|
+
{
|
144
|
+
const unsigned int rho_max = instance->rate - 2;
|
145
|
+
|
146
|
+
if (inputByteLen > rho_max/8)
|
147
|
+
return 1;
|
148
|
+
if ((instance->byteInputIndex != 0) || (inputByteLen*8 > rho_max))
|
149
|
+
return 1;
|
150
|
+
|
151
|
+
SnP_OverwriteWithZeroes(&instance->state, inputByteLen);
|
152
|
+
instance->byteInputIndex = inputByteLen;
|
153
|
+
|
154
|
+
return 0;
|
155
|
+
}
|
156
|
+
|
157
|
+
int DuplexingGetFurtherOutput(DuplexInstance *instance, unsigned char *output, unsigned int outputByteLen)
|
158
|
+
{
|
159
|
+
if (outputByteLen > (instance->rate+7)/8 - instance->byteOutputIndex)
|
160
|
+
return 1; /* The output length must not be greater than the rate (rounded up to a byte) */
|
161
|
+
|
162
|
+
SnP_ExtractBytes(&instance->state, output, instance->byteOutputIndex, outputByteLen);
|
163
|
+
instance->byteOutputIndex += outputByteLen;
|
164
|
+
if (instance->byteOutputIndex*8 > instance->rate) {
|
165
|
+
unsigned char mask = (1 << (instance->rate % 8)) - 1;
|
166
|
+
output[outputByteLen-1] &= mask;
|
167
|
+
}
|
168
|
+
return 0;
|
169
|
+
}
|
170
|
+
|
171
|
+
int DuplexingGetFurtherOutputAndAdd(DuplexInstance *instance, const unsigned char *input, unsigned char *output, unsigned int outputByteLen)
|
172
|
+
{
|
173
|
+
if (outputByteLen > (instance->rate+7)/8 - instance->byteOutputIndex)
|
174
|
+
return 1; /* The output length must not be greater than the rate (rounded up to a byte) */
|
175
|
+
|
176
|
+
SnP_ExtractAndAddBytes(&instance->state, input, output, instance->byteOutputIndex, outputByteLen);
|
177
|
+
instance->byteOutputIndex += outputByteLen;
|
178
|
+
if (instance->byteOutputIndex*8 > instance->rate) {
|
179
|
+
unsigned char mask = (1 << (instance->rate % 8)) - 1;
|
180
|
+
output[outputByteLen-1] &= mask;
|
181
|
+
}
|
182
|
+
return 0;
|
183
|
+
}
|
184
|
+
|
185
|
+
#undef DuplexInstance
|
186
|
+
#undef DuplexInitialize
|
187
|
+
#undef Duplexing
|
188
|
+
#undef DuplexingFeedPartialInput
|
189
|
+
#undef DuplexingFeedZeroes
|
190
|
+
#undef DuplexingOverwritePartialInput
|
191
|
+
#undef DuplexingOverwriteWithZeroes
|
192
|
+
#undef DuplexingGetFurtherOutput
|
193
|
+
#undef DuplexingGetFurtherOutputAndAdd
|
194
|
+
#undef SnP_StaticInitialize
|
195
|
+
#undef SnP_Initialize
|
196
|
+
#undef SnP_AddByte
|
197
|
+
#undef SnP_AddBytes
|
198
|
+
#undef SnP_OverwriteBytes
|
199
|
+
#undef SnP_OverwriteWithZeroes
|
200
|
+
#undef SnP_ExtractBytes
|
201
|
+
#undef SnP_ExtractAndAddBytes
|
@@ -0,0 +1,95 @@
|
|
1
|
+
/*
|
2
|
+
The eXtended Keccak Code Package (XKCP)
|
3
|
+
https://github.com/XKCP/XKCP
|
4
|
+
|
5
|
+
Keccak, 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
|
+
#include "KeccakSponge.h"
|
18
|
+
|
19
|
+
#ifdef KeccakReference
|
20
|
+
#include "displayIntermediateValues.h"
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#ifdef XKCP_has_KeccakP200
|
24
|
+
#include "KeccakP-200-SnP.h"
|
25
|
+
|
26
|
+
#define prefix KeccakWidth200
|
27
|
+
#define SnP KeccakP200
|
28
|
+
#define SnP_width 200
|
29
|
+
#define SnP_Permute KeccakP200_Permute_18rounds
|
30
|
+
#if defined(KeccakF200_FastLoop_supported)
|
31
|
+
#define SnP_FastLoop_Absorb KeccakF200_FastLoop_Absorb
|
32
|
+
#endif
|
33
|
+
#include "KeccakSponge.inc"
|
34
|
+
#undef prefix
|
35
|
+
#undef SnP
|
36
|
+
#undef SnP_width
|
37
|
+
#undef SnP_Permute
|
38
|
+
#undef SnP_FastLoop_Absorb
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#ifdef XKCP_has_KeccakP400
|
42
|
+
#include "KeccakP-400-SnP.h"
|
43
|
+
|
44
|
+
#define prefix KeccakWidth400
|
45
|
+
#define SnP KeccakP400
|
46
|
+
#define SnP_width 400
|
47
|
+
#define SnP_Permute KeccakP400_Permute_20rounds
|
48
|
+
#if defined(KeccakF400_FastLoop_supported)
|
49
|
+
#define SnP_FastLoop_Absorb KeccakF400_FastLoop_Absorb
|
50
|
+
#endif
|
51
|
+
#include "KeccakSponge.inc"
|
52
|
+
#undef prefix
|
53
|
+
#undef SnP
|
54
|
+
#undef SnP_width
|
55
|
+
#undef SnP_Permute
|
56
|
+
#undef SnP_FastLoop_Absorb
|
57
|
+
#endif
|
58
|
+
|
59
|
+
#ifdef XKCP_has_KeccakP800
|
60
|
+
#include "KeccakP-800-SnP.h"
|
61
|
+
|
62
|
+
#define prefix KeccakWidth800
|
63
|
+
#define SnP KeccakP800
|
64
|
+
#define SnP_width 800
|
65
|
+
#define SnP_Permute KeccakP800_Permute_22rounds
|
66
|
+
#if defined(KeccakF800_FastLoop_supported)
|
67
|
+
#define SnP_FastLoop_Absorb KeccakF800_FastLoop_Absorb
|
68
|
+
#endif
|
69
|
+
#include "KeccakSponge.inc"
|
70
|
+
#undef prefix
|
71
|
+
#undef SnP
|
72
|
+
#undef SnP_width
|
73
|
+
#undef SnP_Permute
|
74
|
+
#undef SnP_FastLoop_Absorb
|
75
|
+
#endif
|
76
|
+
|
77
|
+
#ifdef XKCP_has_KeccakP1600
|
78
|
+
#include "KeccakP-1600-SnP.h"
|
79
|
+
|
80
|
+
#define prefix KeccakWidth1600
|
81
|
+
#define SnP KeccakP1600
|
82
|
+
#define SnP_state KeccakP1600_state
|
83
|
+
#define SnP_width 1600
|
84
|
+
#define SnP_Permute KeccakP1600_Permute_24rounds
|
85
|
+
#if defined(KeccakF1600_FastLoop_supported)
|
86
|
+
#define SnP_FastLoop_Absorb KeccakF1600_FastLoop_Absorb
|
87
|
+
#endif
|
88
|
+
#include "KeccakSponge.inc"
|
89
|
+
#undef prefix
|
90
|
+
#undef SnP
|
91
|
+
#undef SnP_state
|
92
|
+
#undef SnP_width
|
93
|
+
#undef SnP_Permute
|
94
|
+
#undef SnP_FastLoop_Absorb
|
95
|
+
#endif
|
@@ -0,0 +1,70 @@
|
|
1
|
+
/*
|
2
|
+
The eXtended Keccak Code Package (XKCP)
|
3
|
+
https://github.com/XKCP/XKCP
|
4
|
+
|
5
|
+
Keccak, 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
|
+
#ifndef _KeccakSponge_h_
|
18
|
+
#define _KeccakSponge_h_
|
19
|
+
|
20
|
+
/* For the documentation, please follow the link: */
|
21
|
+
/* #include "KeccakSponge-documentation.h" */
|
22
|
+
|
23
|
+
#include <string.h>
|
24
|
+
#include "align.h"
|
25
|
+
#include "config.h"
|
26
|
+
|
27
|
+
#define XKCP_DeclareSpongeStructure(prefix, state_t) \
|
28
|
+
typedef struct prefix##_SpongeInstanceStruct { \
|
29
|
+
state_t state; \
|
30
|
+
unsigned int rate; \
|
31
|
+
unsigned int byteIOIndex; \
|
32
|
+
int squeezing; \
|
33
|
+
} prefix##_SpongeInstance;
|
34
|
+
|
35
|
+
#define XKCP_DeclareSpongeFunctions(prefix) \
|
36
|
+
int prefix##_Sponge(unsigned int rate, unsigned int capacity, const unsigned char *input, size_t inputByteLen, unsigned char suffix, unsigned char *output, size_t outputByteLen); \
|
37
|
+
int prefix##_SpongeInitialize(prefix##_SpongeInstance *spongeInstance, unsigned int rate, unsigned int capacity); \
|
38
|
+
int prefix##_SpongeAbsorb(prefix##_SpongeInstance *spongeInstance, const unsigned char *data, size_t dataByteLen); \
|
39
|
+
int prefix##_SpongeAbsorbLastFewBits(prefix##_SpongeInstance *spongeInstance, unsigned char delimitedData); \
|
40
|
+
int prefix##_SpongeSqueeze(prefix##_SpongeInstance *spongeInstance, unsigned char *data, size_t dataByteLen);
|
41
|
+
|
42
|
+
#ifdef XKCP_has_KeccakP200
|
43
|
+
#include "KeccakP-200-SnP.h"
|
44
|
+
XKCP_DeclareSpongeStructure(KeccakWidth200, KeccakP200_stateSizeInBytes, KeccakP200_stateAlignment)
|
45
|
+
XKCP_DeclareSpongeFunctions(KeccakWidth200)
|
46
|
+
#define XKCP_has_Sponge_Keccak_width200
|
47
|
+
#endif
|
48
|
+
|
49
|
+
#ifdef XKCP_has_KeccakP400
|
50
|
+
#include "KeccakP-400-SnP.h"
|
51
|
+
XKCP_DeclareSpongeStructure(KeccakWidth400, KeccakP400_stateSizeInBytes, KeccakP400_stateAlignment)
|
52
|
+
XKCP_DeclareSpongeFunctions(KeccakWidth400)
|
53
|
+
#define XKCP_has_Sponge_Keccak_width400
|
54
|
+
#endif
|
55
|
+
|
56
|
+
#ifdef XKCP_has_KeccakP800
|
57
|
+
#include "KeccakP-800-SnP.h"
|
58
|
+
XKCP_DeclareSpongeStructure(KeccakWidth800, KeccakP800_stateSizeInBytes, KeccakP800_stateAlignment)
|
59
|
+
XKCP_DeclareSpongeFunctions(KeccakWidth800)
|
60
|
+
#define XKCP_has_Sponge_Keccak_width800
|
61
|
+
#endif
|
62
|
+
|
63
|
+
#ifdef XKCP_has_KeccakP1600
|
64
|
+
#include "KeccakP-1600-SnP.h"
|
65
|
+
XKCP_DeclareSpongeStructure(KeccakWidth1600, KeccakP1600_state)
|
66
|
+
XKCP_DeclareSpongeFunctions(KeccakWidth1600)
|
67
|
+
#define XKCP_has_Sponge_Keccak_width1600
|
68
|
+
#endif
|
69
|
+
|
70
|
+
#endif
|
@@ -0,0 +1,312 @@
|
|
1
|
+
/*
|
2
|
+
The eXtended Keccak Code Package (XKCP)
|
3
|
+
https://github.com/XKCP/XKCP
|
4
|
+
|
5
|
+
Keccak, 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
|
+
#define JOIN0(a, b) a ## b
|
18
|
+
#define JOIN(a, b) JOIN0(a, b)
|
19
|
+
|
20
|
+
#define Sponge JOIN(prefix, _Sponge)
|
21
|
+
#define SpongeInstance JOIN(prefix, _SpongeInstance)
|
22
|
+
#define SpongeInitialize JOIN(prefix, _SpongeInitialize)
|
23
|
+
#define SpongeAbsorb JOIN(prefix, _SpongeAbsorb)
|
24
|
+
#define SpongeAbsorbLastFewBits JOIN(prefix, _SpongeAbsorbLastFewBits)
|
25
|
+
#define SpongeSqueeze JOIN(prefix, _SpongeSqueeze)
|
26
|
+
|
27
|
+
#define SnP_StaticInitialize JOIN(SnP, _StaticInitialize)
|
28
|
+
#define SnP_Initialize JOIN(SnP, _Initialize)
|
29
|
+
#define SnP_AddByte JOIN(SnP, _AddByte)
|
30
|
+
#define SnP_AddBytes JOIN(SnP, _AddBytes)
|
31
|
+
#define SnP_ExtractBytes JOIN(SnP, _ExtractBytes)
|
32
|
+
|
33
|
+
int Sponge(unsigned int rate, unsigned int capacity, const unsigned char *input, size_t inputByteLen, unsigned char suffix, unsigned char *output, size_t outputByteLen)
|
34
|
+
{
|
35
|
+
SnP_state state;
|
36
|
+
unsigned int partialBlock;
|
37
|
+
const unsigned char *curInput = input;
|
38
|
+
unsigned char *curOutput = output;
|
39
|
+
unsigned int rateInBytes = rate/8;
|
40
|
+
|
41
|
+
if (rate+capacity != SnP_width)
|
42
|
+
return 1;
|
43
|
+
if ((rate <= 0) || (rate > SnP_width) || ((rate % 8) != 0))
|
44
|
+
return 1;
|
45
|
+
if (suffix == 0)
|
46
|
+
return 1;
|
47
|
+
|
48
|
+
/* Initialize the state */
|
49
|
+
SnP_StaticInitialize();
|
50
|
+
SnP_Initialize(&state);
|
51
|
+
|
52
|
+
/* First, absorb whole blocks */
|
53
|
+
#ifdef SnP_FastLoop_Absorb
|
54
|
+
if (((rateInBytes % (SnP_width/200)) == 0) && (inputByteLen >= rateInBytes)) {
|
55
|
+
/* fast lane: whole lane rate */
|
56
|
+
size_t j;
|
57
|
+
j = SnP_FastLoop_Absorb(&state, rateInBytes/(SnP_width/200), curInput, inputByteLen);
|
58
|
+
curInput += j;
|
59
|
+
inputByteLen -= j;
|
60
|
+
}
|
61
|
+
#endif
|
62
|
+
while(inputByteLen >= (size_t)rateInBytes) {
|
63
|
+
#ifdef KeccakReference
|
64
|
+
displayBytes(1, "Block to be absorbed", curInput, rateInBytes);
|
65
|
+
#endif
|
66
|
+
SnP_AddBytes(&state, curInput, 0, rateInBytes);
|
67
|
+
SnP_Permute(&state);
|
68
|
+
curInput += rateInBytes;
|
69
|
+
inputByteLen -= rateInBytes;
|
70
|
+
}
|
71
|
+
|
72
|
+
/* Then, absorb what remains */
|
73
|
+
partialBlock = (unsigned int)inputByteLen;
|
74
|
+
#ifdef KeccakReference
|
75
|
+
displayBytes(1, "Block to be absorbed (part)", curInput, partialBlock);
|
76
|
+
#endif
|
77
|
+
SnP_AddBytes(&state, curInput, 0, partialBlock);
|
78
|
+
|
79
|
+
/* Finally, absorb the suffix */
|
80
|
+
#ifdef KeccakReference
|
81
|
+
{
|
82
|
+
unsigned char delimitedData1[1];
|
83
|
+
delimitedData1[0] = suffix;
|
84
|
+
displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
|
85
|
+
}
|
86
|
+
#endif
|
87
|
+
/* Last few bits, whose delimiter coincides with first bit of padding */
|
88
|
+
SnP_AddByte(&state, suffix, partialBlock);
|
89
|
+
/* If the first bit of padding is at position rate-1, we need a whole new block for the second bit of padding */
|
90
|
+
if ((suffix >= 0x80) && (partialBlock == (rateInBytes-1)))
|
91
|
+
SnP_Permute(&state);
|
92
|
+
/* Second bit of padding */
|
93
|
+
SnP_AddByte(&state, 0x80, rateInBytes-1);
|
94
|
+
#ifdef KeccakReference
|
95
|
+
{
|
96
|
+
unsigned char block[SnP_width/8];
|
97
|
+
memset(block, 0, SnP_width/8);
|
98
|
+
block[rateInBytes-1] = 0x80;
|
99
|
+
displayBytes(1, "Second bit of padding", block, rateInBytes);
|
100
|
+
}
|
101
|
+
#endif
|
102
|
+
SnP_Permute(&state);
|
103
|
+
#ifdef KeccakReference
|
104
|
+
displayText(1, "--- Switching to squeezing phase ---");
|
105
|
+
#endif
|
106
|
+
|
107
|
+
/* First, output whole blocks */
|
108
|
+
while(outputByteLen > (size_t)rateInBytes) {
|
109
|
+
SnP_ExtractBytes(&state, curOutput, 0, rateInBytes);
|
110
|
+
SnP_Permute(&state);
|
111
|
+
#ifdef KeccakReference
|
112
|
+
displayBytes(1, "Squeezed block", curOutput, rateInBytes);
|
113
|
+
#endif
|
114
|
+
curOutput += rateInBytes;
|
115
|
+
outputByteLen -= rateInBytes;
|
116
|
+
}
|
117
|
+
|
118
|
+
/* Finally, output what remains */
|
119
|
+
partialBlock = (unsigned int)outputByteLen;
|
120
|
+
SnP_ExtractBytes(&state, curOutput, 0, partialBlock);
|
121
|
+
#ifdef KeccakReference
|
122
|
+
displayBytes(1, "Squeezed block (part)", curOutput, partialBlock);
|
123
|
+
#endif
|
124
|
+
|
125
|
+
return 0;
|
126
|
+
}
|
127
|
+
|
128
|
+
/* ---------------------------------------------------------------- */
|
129
|
+
/* ---------------------------------------------------------------- */
|
130
|
+
/* ---------------------------------------------------------------- */
|
131
|
+
|
132
|
+
int SpongeInitialize(SpongeInstance *instance, unsigned int rate, unsigned int capacity)
|
133
|
+
{
|
134
|
+
if (rate+capacity != SnP_width)
|
135
|
+
return 1;
|
136
|
+
if ((rate <= 0) || (rate > SnP_width) || ((rate % 8) != 0))
|
137
|
+
return 1;
|
138
|
+
SnP_StaticInitialize();
|
139
|
+
SnP_Initialize(&instance->state);
|
140
|
+
instance->rate = rate;
|
141
|
+
instance->byteIOIndex = 0;
|
142
|
+
instance->squeezing = 0;
|
143
|
+
|
144
|
+
return 0;
|
145
|
+
}
|
146
|
+
|
147
|
+
/* ---------------------------------------------------------------- */
|
148
|
+
|
149
|
+
int SpongeAbsorb(SpongeInstance *instance, const unsigned char *data, size_t dataByteLen)
|
150
|
+
{
|
151
|
+
size_t i, j;
|
152
|
+
unsigned int partialBlock;
|
153
|
+
const unsigned char *curData;
|
154
|
+
unsigned int rateInBytes = instance->rate/8;
|
155
|
+
|
156
|
+
if (instance->squeezing)
|
157
|
+
return 1; /* Too late for additional input */
|
158
|
+
|
159
|
+
i = 0;
|
160
|
+
curData = data;
|
161
|
+
while(i < dataByteLen) {
|
162
|
+
if ((instance->byteIOIndex == 0) && (dataByteLen-i >= rateInBytes)) {
|
163
|
+
#ifdef SnP_FastLoop_Absorb
|
164
|
+
/* processing full blocks first */
|
165
|
+
if ((rateInBytes % (SnP_width/200)) == 0) {
|
166
|
+
/* fast lane: whole lane rate */
|
167
|
+
j = SnP_FastLoop_Absorb(&instance->state, rateInBytes/(SnP_width/200), curData, dataByteLen - i);
|
168
|
+
i += j;
|
169
|
+
curData += j;
|
170
|
+
}
|
171
|
+
else {
|
172
|
+
#endif
|
173
|
+
for(j=dataByteLen-i; j>=rateInBytes; j-=rateInBytes) {
|
174
|
+
#ifdef KeccakReference
|
175
|
+
displayBytes(1, "Block to be absorbed", curData, rateInBytes);
|
176
|
+
#endif
|
177
|
+
SnP_AddBytes(&instance->state, curData, 0, rateInBytes);
|
178
|
+
SnP_Permute(&instance->state);
|
179
|
+
curData+=rateInBytes;
|
180
|
+
}
|
181
|
+
i = dataByteLen - j;
|
182
|
+
#ifdef SnP_FastLoop_Absorb
|
183
|
+
}
|
184
|
+
#endif
|
185
|
+
}
|
186
|
+
else {
|
187
|
+
/* normal lane: using the message queue */
|
188
|
+
if (dataByteLen-i > rateInBytes-instance->byteIOIndex)
|
189
|
+
partialBlock = rateInBytes-instance->byteIOIndex;
|
190
|
+
else
|
191
|
+
partialBlock = (unsigned int)(dataByteLen - i);
|
192
|
+
#ifdef KeccakReference
|
193
|
+
displayBytes(1, "Block to be absorbed (part)", curData, partialBlock);
|
194
|
+
#endif
|
195
|
+
i += partialBlock;
|
196
|
+
|
197
|
+
SnP_AddBytes(&instance->state, curData, instance->byteIOIndex, partialBlock);
|
198
|
+
curData += partialBlock;
|
199
|
+
instance->byteIOIndex += partialBlock;
|
200
|
+
if (instance->byteIOIndex == rateInBytes) {
|
201
|
+
SnP_Permute(&instance->state);
|
202
|
+
instance->byteIOIndex = 0;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
}
|
206
|
+
return 0;
|
207
|
+
}
|
208
|
+
|
209
|
+
/* ---------------------------------------------------------------- */
|
210
|
+
|
211
|
+
int SpongeAbsorbLastFewBits(SpongeInstance *instance, unsigned char delimitedData)
|
212
|
+
{
|
213
|
+
unsigned int rateInBytes = instance->rate/8;
|
214
|
+
|
215
|
+
if (delimitedData == 0)
|
216
|
+
return 1;
|
217
|
+
if (instance->squeezing)
|
218
|
+
return 1; /* Too late for additional input */
|
219
|
+
|
220
|
+
#ifdef KeccakReference
|
221
|
+
{
|
222
|
+
unsigned char delimitedData1[1];
|
223
|
+
delimitedData1[0] = delimitedData;
|
224
|
+
displayBytes(1, "Block to be absorbed (last few bits + first bit of padding)", delimitedData1, 1);
|
225
|
+
}
|
226
|
+
#endif
|
227
|
+
/* Last few bits, whose delimiter coincides with first bit of padding */
|
228
|
+
SnP_AddByte(&instance->state, delimitedData, instance->byteIOIndex);
|
229
|
+
/* If the first bit of padding is at position rate-1, we need a whole new block for the second bit of padding */
|
230
|
+
if ((delimitedData >= 0x80) && (instance->byteIOIndex == (rateInBytes-1)))
|
231
|
+
SnP_Permute(&instance->state);
|
232
|
+
/* Second bit of padding */
|
233
|
+
SnP_AddByte(&instance->state, 0x80, rateInBytes-1);
|
234
|
+
#ifdef KeccakReference
|
235
|
+
{
|
236
|
+
unsigned char block[SnP_width/8];
|
237
|
+
memset(block, 0, SnP_width/8);
|
238
|
+
block[rateInBytes-1] = 0x80;
|
239
|
+
displayBytes(1, "Second bit of padding", block, rateInBytes);
|
240
|
+
}
|
241
|
+
#endif
|
242
|
+
SnP_Permute(&instance->state);
|
243
|
+
instance->byteIOIndex = 0;
|
244
|
+
instance->squeezing = 1;
|
245
|
+
#ifdef KeccakReference
|
246
|
+
displayText(1, "--- Switching to squeezing phase ---");
|
247
|
+
#endif
|
248
|
+
return 0;
|
249
|
+
}
|
250
|
+
|
251
|
+
/* ---------------------------------------------------------------- */
|
252
|
+
|
253
|
+
int SpongeSqueeze(SpongeInstance *instance, unsigned char *data, size_t dataByteLen)
|
254
|
+
{
|
255
|
+
size_t i, j;
|
256
|
+
unsigned int partialBlock;
|
257
|
+
unsigned int rateInBytes = instance->rate/8;
|
258
|
+
unsigned char *curData;
|
259
|
+
|
260
|
+
if (!instance->squeezing)
|
261
|
+
SpongeAbsorbLastFewBits(instance, 0x01);
|
262
|
+
|
263
|
+
i = 0;
|
264
|
+
curData = data;
|
265
|
+
while(i < dataByteLen) {
|
266
|
+
if ((instance->byteIOIndex == rateInBytes) && (dataByteLen-i >= rateInBytes)) {
|
267
|
+
for(j=dataByteLen-i; j>=rateInBytes; j-=rateInBytes) {
|
268
|
+
SnP_Permute(&instance->state);
|
269
|
+
SnP_ExtractBytes(&instance->state, curData, 0, rateInBytes);
|
270
|
+
#ifdef KeccakReference
|
271
|
+
displayBytes(1, "Squeezed block", curData, rateInBytes);
|
272
|
+
#endif
|
273
|
+
curData+=rateInBytes;
|
274
|
+
}
|
275
|
+
i = dataByteLen - j;
|
276
|
+
}
|
277
|
+
else {
|
278
|
+
/* normal lane: using the message queue */
|
279
|
+
if (instance->byteIOIndex == rateInBytes) {
|
280
|
+
SnP_Permute(&instance->state);
|
281
|
+
instance->byteIOIndex = 0;
|
282
|
+
}
|
283
|
+
if (dataByteLen-i > rateInBytes-instance->byteIOIndex)
|
284
|
+
partialBlock = rateInBytes-instance->byteIOIndex;
|
285
|
+
else
|
286
|
+
partialBlock = (unsigned int)(dataByteLen - i);
|
287
|
+
i += partialBlock;
|
288
|
+
|
289
|
+
SnP_ExtractBytes(&instance->state, curData, instance->byteIOIndex, partialBlock);
|
290
|
+
#ifdef KeccakReference
|
291
|
+
displayBytes(1, "Squeezed block (part)", curData, partialBlock);
|
292
|
+
#endif
|
293
|
+
curData += partialBlock;
|
294
|
+
instance->byteIOIndex += partialBlock;
|
295
|
+
}
|
296
|
+
}
|
297
|
+
return 0;
|
298
|
+
}
|
299
|
+
|
300
|
+
/* ---------------------------------------------------------------- */
|
301
|
+
|
302
|
+
#undef Sponge
|
303
|
+
#undef SpongeInstance
|
304
|
+
#undef SpongeInitialize
|
305
|
+
#undef SpongeAbsorb
|
306
|
+
#undef SpongeAbsorbLastFewBits
|
307
|
+
#undef SpongeSqueeze
|
308
|
+
#undef SnP_StaticInitialize
|
309
|
+
#undef SnP_Initialize
|
310
|
+
#undef SnP_AddByte
|
311
|
+
#undef SnP_AddBytes
|
312
|
+
#undef SnP_ExtractBytes
|