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,61 @@
|
|
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 Gilles Van Assche, 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 "KeccakPRG.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_width 200
|
28
|
+
#include "KeccakPRG.inc"
|
29
|
+
#undef prefix
|
30
|
+
#undef SnP_width
|
31
|
+
#endif
|
32
|
+
|
33
|
+
#ifdef XKCP_has_KeccakP400
|
34
|
+
#include "KeccakP-400-SnP.h"
|
35
|
+
|
36
|
+
#define prefix KeccakWidth400
|
37
|
+
#define SnP_width 400
|
38
|
+
#include "KeccakPRG.inc"
|
39
|
+
#undef prefix
|
40
|
+
#undef SnP_width
|
41
|
+
#endif
|
42
|
+
|
43
|
+
#ifdef XKCP_has_KeccakP800
|
44
|
+
#include "KeccakP-800-SnP.h"
|
45
|
+
|
46
|
+
#define prefix KeccakWidth800
|
47
|
+
#define SnP_width 800
|
48
|
+
#include "KeccakPRG.inc"
|
49
|
+
#undef prefix
|
50
|
+
#undef SnP_width
|
51
|
+
#endif
|
52
|
+
|
53
|
+
#ifdef XKCP_has_KeccakP1600
|
54
|
+
#include "KeccakP-1600-SnP.h"
|
55
|
+
|
56
|
+
#define prefix KeccakWidth1600
|
57
|
+
#define SnP_width 1600
|
58
|
+
#include "KeccakPRG.inc"
|
59
|
+
#undef prefix
|
60
|
+
#undef SnP_width
|
61
|
+
#endif
|
@@ -0,0 +1,67 @@
|
|
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 Gilles Van Assche, 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 _KeccakPRG_h_
|
18
|
+
#define _KeccakPRG_h_
|
19
|
+
|
20
|
+
/* For the documentation, please follow the link: */
|
21
|
+
/* #include "KeccakPRG-documentation.h" */
|
22
|
+
|
23
|
+
#include <string.h>
|
24
|
+
#include "align.h"
|
25
|
+
#include "config.h"
|
26
|
+
#include "KeccakDuplex.h"
|
27
|
+
|
28
|
+
#define XKCP_DeclareSpongePRG_Structure(prefix) \
|
29
|
+
typedef struct prefix##_SpongePRG_InstanceStruct { \
|
30
|
+
prefix##_DuplexInstance duplex; \
|
31
|
+
} prefix##_SpongePRG_Instance;
|
32
|
+
|
33
|
+
#define XKCP_DeclareSpongePRG_Functions(prefix) \
|
34
|
+
int prefix##_SpongePRG_Initialize(prefix##_SpongePRG_Instance *instance, unsigned int capacity); \
|
35
|
+
int prefix##_SpongePRG_Feed(prefix##_SpongePRG_Instance *instance, const unsigned char *input, unsigned int inputByteLen); \
|
36
|
+
int prefix##_SpongePRG_Fetch(prefix##_SpongePRG_Instance *Instance, unsigned char *out, unsigned int outByteLen); \
|
37
|
+
int prefix##_SpongePRG_Forget(prefix##_SpongePRG_Instance *instance);
|
38
|
+
|
39
|
+
#ifdef XKCP_has_KeccakP200
|
40
|
+
#include "KeccakP-200-SnP.h"
|
41
|
+
XKCP_DeclareSpongePRG_Structure(KeccakWidth200, KeccakP200_stateSizeInBytes, KeccakP200_stateAlignment)
|
42
|
+
XKCP_DeclareSpongePRG_Functions(KeccakWidth200)
|
43
|
+
#define XKCP_has_PRG_Keccak_width200
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#ifdef XKCP_has_KeccakP400
|
47
|
+
#include "KeccakP-400-SnP.h"
|
48
|
+
XKCP_DeclareSpongePRG_Structure(KeccakWidth400, KeccakP400_stateSizeInBytes, KeccakP400_stateAlignment)
|
49
|
+
XKCP_DeclareSpongePRG_Functions(KeccakWidth400)
|
50
|
+
#define XKCP_has_PRG_Keccak_width400
|
51
|
+
#endif
|
52
|
+
|
53
|
+
#ifdef XKCP_has_KeccakP800
|
54
|
+
#include "KeccakP-800-SnP.h"
|
55
|
+
XKCP_DeclareSpongePRG_Structure(KeccakWidth800, KeccakP800_stateSizeInBytes, KeccakP800_stateAlignment)
|
56
|
+
XKCP_DeclareSpongePRG_Functions(KeccakWidth800)
|
57
|
+
#define XKCP_has_PRG_Keccak_width800
|
58
|
+
#endif
|
59
|
+
|
60
|
+
#ifdef XKCP_has_KeccakP1600
|
61
|
+
#include "KeccakP-1600-SnP.h"
|
62
|
+
XKCP_DeclareSpongePRG_Structure(KeccakWidth1600)
|
63
|
+
XKCP_DeclareSpongePRG_Functions(KeccakWidth1600)
|
64
|
+
#define XKCP_has_PRG_Keccak_width1600
|
65
|
+
#endif
|
66
|
+
|
67
|
+
#endif
|
@@ -0,0 +1,128 @@
|
|
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 Gilles Van Assche, 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 SpongePRG_Instance JOIN(prefix, _SpongePRG_Instance)
|
21
|
+
#define SpongePRG_Initialize JOIN(prefix, _SpongePRG_Initialize)
|
22
|
+
#define SpongePRG_Feed JOIN(prefix, _SpongePRG_Feed)
|
23
|
+
#define SpongePRG_Fetch JOIN(prefix, _SpongePRG_Fetch)
|
24
|
+
#define SpongePRG_Forget JOIN(prefix, _SpongePRG_Forget)
|
25
|
+
|
26
|
+
#define DuplexInstance JOIN(prefix, _DuplexInstance)
|
27
|
+
#define DuplexInitialize JOIN(prefix, _DuplexInitialize)
|
28
|
+
#define Duplexing JOIN(prefix, _Duplexing)
|
29
|
+
#define DuplexingFeedPartialInput JOIN(prefix, _DuplexingFeedPartialInput)
|
30
|
+
#define DuplexingOverwriteWithZeroes JOIN(prefix, _DuplexingOverwriteWithZeroes)
|
31
|
+
#define DuplexingGetFurtherOutput JOIN(prefix, _DuplexingGetFurtherOutput)
|
32
|
+
#define DuplexGetInputIndex(duplex) (duplex)->byteInputIndex
|
33
|
+
#define DuplexGetOutputIndex(duplex) (duplex)->byteOutputIndex
|
34
|
+
#define DuplexSetOutputIndex(duplex, i) (duplex)->byteOutputIndex = (i)
|
35
|
+
|
36
|
+
int SpongePRG_Initialize(SpongePRG_Instance *instance, unsigned int capacity)
|
37
|
+
{
|
38
|
+
unsigned int rate;
|
39
|
+
unsigned int rhoInBytes;
|
40
|
+
|
41
|
+
if (capacity > (SnP_width-10))
|
42
|
+
return 1;
|
43
|
+
|
44
|
+
rate = SnP_width - capacity;
|
45
|
+
rhoInBytes = (rate-2)/8;
|
46
|
+
|
47
|
+
if ( (rhoInBytes == 0) || (rhoInBytes >= SnP_width/8) )
|
48
|
+
return 1;
|
49
|
+
return DuplexInitialize(&instance->duplex, rate, capacity);
|
50
|
+
}
|
51
|
+
|
52
|
+
int SpongePRG_Feed(SpongePRG_Instance *instance, const unsigned char *input, unsigned int inputByteLen)
|
53
|
+
{
|
54
|
+
unsigned int rhoInBytes = (instance->duplex.rate-2)/8;
|
55
|
+
int error = 0;
|
56
|
+
|
57
|
+
while( !error && (inputByteLen >= rhoInBytes - DuplexGetInputIndex(&instance->duplex))) {
|
58
|
+
unsigned int localSize = rhoInBytes - DuplexGetInputIndex(&instance->duplex);
|
59
|
+
error |= DuplexingFeedPartialInput(&instance->duplex, input, localSize);
|
60
|
+
error |= Duplexing(&instance->duplex, 0, 0, 0, 0, 0x01);
|
61
|
+
input += localSize;
|
62
|
+
inputByteLen -= localSize;
|
63
|
+
}
|
64
|
+
if (!error)
|
65
|
+
error = DuplexingFeedPartialInput(&instance->duplex, input, inputByteLen);
|
66
|
+
DuplexSetOutputIndex(&instance->duplex, rhoInBytes);
|
67
|
+
return error;
|
68
|
+
}
|
69
|
+
|
70
|
+
int SpongePRG_Fetch(SpongePRG_Instance *instance, unsigned char *output, unsigned int outputByteLen)
|
71
|
+
{
|
72
|
+
unsigned int rhoInBytes = (instance->duplex.rate-2)/8;
|
73
|
+
int error = 0;
|
74
|
+
|
75
|
+
if (DuplexGetOutputIndex(&instance->duplex) < rhoInBytes) {
|
76
|
+
unsigned int localSize = rhoInBytes - DuplexGetOutputIndex(&instance->duplex);
|
77
|
+
localSize = (localSize <= outputByteLen) ? localSize : outputByteLen;
|
78
|
+
error = DuplexingGetFurtherOutput(&instance->duplex, output, localSize);
|
79
|
+
output += localSize;
|
80
|
+
outputByteLen -= localSize;
|
81
|
+
}
|
82
|
+
|
83
|
+
while( !error && (outputByteLen > 0) ) {
|
84
|
+
error = Duplexing(&instance->duplex, 0, 0, 0, 0, 0x01);
|
85
|
+
if (!error) {
|
86
|
+
unsigned int localSize = (rhoInBytes <= outputByteLen) ? rhoInBytes : outputByteLen;
|
87
|
+
error = DuplexingGetFurtherOutput(&instance->duplex, output, localSize);
|
88
|
+
output += localSize;
|
89
|
+
outputByteLen -= localSize;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
return error;
|
93
|
+
}
|
94
|
+
|
95
|
+
int SpongePRG_Forget(SpongePRG_Instance *instance)
|
96
|
+
{
|
97
|
+
unsigned int rhoInBytes = (instance->duplex.rate-2)/8;
|
98
|
+
unsigned int capacity = SnP_width - instance->duplex.rate;
|
99
|
+
int error;
|
100
|
+
|
101
|
+
if ((rhoInBytes*8) < capacity)
|
102
|
+
return 1;
|
103
|
+
|
104
|
+
error = Duplexing(&instance->duplex, 0, 0, 0, 0, 0x01);
|
105
|
+
if ( !error ) {
|
106
|
+
error = DuplexingOverwriteWithZeroes(&instance->duplex, rhoInBytes);
|
107
|
+
if ( !error )
|
108
|
+
error = Duplexing(&instance->duplex, 0, 0, 0, 0, 0x01);
|
109
|
+
}
|
110
|
+
DuplexSetOutputIndex(&instance->duplex, rhoInBytes);
|
111
|
+
return error;
|
112
|
+
}
|
113
|
+
|
114
|
+
#undef SpongePRG_Instance
|
115
|
+
#undef SpongePRG_Initialize
|
116
|
+
#undef SpongePRG_Feed
|
117
|
+
#undef SpongePRG_Fetch
|
118
|
+
#undef SpongePRG_Forget
|
119
|
+
|
120
|
+
#undef DuplexInstance
|
121
|
+
#undef DuplexInitialize
|
122
|
+
#undef Duplexing
|
123
|
+
#undef DuplexingFeedPartialInput
|
124
|
+
#undef DuplexingOverwriteWithZeroes
|
125
|
+
#undef DuplexingGetFurtherOutput
|
126
|
+
#undef DuplexGetInputIndex
|
127
|
+
#undef DuplexGetOutputIndex
|
128
|
+
#undef DuplexSetOutputIndex
|
@@ -0,0 +1,93 @@
|
|
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 Ronny Van Keer, 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 <string.h>
|
18
|
+
#include "SP800-185.h"
|
19
|
+
|
20
|
+
#ifdef XKCP_has_KeccakP1600times2
|
21
|
+
#include "KeccakP-1600-times2-SnP.h"
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#ifdef XKCP_has_KeccakP1600times4
|
25
|
+
#include "KeccakP-1600-times4-SnP.h"
|
26
|
+
#endif
|
27
|
+
|
28
|
+
#ifdef XKCP_has_KeccakP1600times8
|
29
|
+
#include "KeccakP-1600-times8-SnP.h"
|
30
|
+
#endif
|
31
|
+
|
32
|
+
/* #define DEBUG_DUMP */
|
33
|
+
|
34
|
+
#if defined(DEBUG_DUMP)
|
35
|
+
|
36
|
+
#include <stdio.h>
|
37
|
+
|
38
|
+
static void DUMP( const unsigned char * pText, const unsigned char * pData, unsigned int size )
|
39
|
+
{
|
40
|
+
unsigned int i;
|
41
|
+
printf("%s (%u bytes):", pText, size);
|
42
|
+
for(i=0; i<size; i++)
|
43
|
+
printf(" %02x", (int)pData[i]);
|
44
|
+
printf("\n");
|
45
|
+
}
|
46
|
+
#else
|
47
|
+
#define DUMP(pText, pData, size )
|
48
|
+
#endif
|
49
|
+
|
50
|
+
static unsigned int left_encode( unsigned char * encbuf, size_t value )
|
51
|
+
{
|
52
|
+
unsigned int n, i;
|
53
|
+
size_t v;
|
54
|
+
|
55
|
+
for ( v = value, n = 0; v && (n < sizeof(size_t)); ++n, v >>= 8 )
|
56
|
+
; /* empty */
|
57
|
+
if (n == 0)
|
58
|
+
n = 1;
|
59
|
+
for ( i = 1; i <= n; ++i )
|
60
|
+
{
|
61
|
+
encbuf[i] = (unsigned char)(value >> (8 * (n-i)));
|
62
|
+
}
|
63
|
+
encbuf[0] = (unsigned char)n;
|
64
|
+
return n + 1;
|
65
|
+
}
|
66
|
+
|
67
|
+
static unsigned int right_encode( unsigned char * encbuf, size_t value )
|
68
|
+
{
|
69
|
+
unsigned int n, i;
|
70
|
+
size_t v;
|
71
|
+
|
72
|
+
for ( v = value, n = 0; v && (n < sizeof(size_t)); ++n, v >>= 8 )
|
73
|
+
; /* empty */
|
74
|
+
if (n == 0)
|
75
|
+
n = 1;
|
76
|
+
for ( i = 1; i <= n; ++i )
|
77
|
+
{
|
78
|
+
encbuf[i-1] = (unsigned char)(value >> (8 * (n-i)));
|
79
|
+
}
|
80
|
+
encbuf[n] = (unsigned char)n;
|
81
|
+
return n + 1;
|
82
|
+
}
|
83
|
+
|
84
|
+
#define laneSize 8
|
85
|
+
#define suffix 0x1F
|
86
|
+
|
87
|
+
#define security 128
|
88
|
+
#include "SP800-185.inc"
|
89
|
+
#undef security
|
90
|
+
|
91
|
+
#define security 256
|
92
|
+
#include "SP800-185.inc"
|
93
|
+
#undef security
|