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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.clang-format +54 -0
  4. data/.document +3 -3
  5. data/.rdoc_options +11 -0
  6. data/.rspec +2 -2
  7. data/.rubocop.yml +8 -1
  8. data/CHANGELOG.md +23 -0
  9. data/Gemfile +12 -0
  10. data/LICENSE.txt +1 -1
  11. data/README.md +185 -65
  12. data/Rakefile +12 -4
  13. data/certs/io+sha3@jsg.io.pem +26 -0
  14. data/doc/sha3.rb +83 -0
  15. data/ext/sha3/config.h +2 -2
  16. data/ext/sha3/digest.c +726 -169
  17. data/ext/sha3/digest.h +6 -35
  18. data/ext/sha3/extconf.rb +42 -38
  19. data/ext/sha3/kmac.c +504 -0
  20. data/ext/sha3/kmac.h +14 -0
  21. data/ext/sha3/lib/high/Keccak/KeccakDuplex.c +81 -0
  22. data/ext/sha3/lib/high/Keccak/KeccakDuplex.h +73 -0
  23. data/ext/sha3/lib/high/Keccak/KeccakDuplex.inc +201 -0
  24. data/ext/sha3/lib/high/Keccak/KeccakSponge.c +2 -18
  25. data/ext/sha3/lib/high/Keccak/KeccakSponge.h +4 -10
  26. data/ext/sha3/lib/high/Keccak/KeccakSponge.inc +27 -31
  27. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.c +61 -0
  28. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.h +67 -0
  29. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.inc +128 -0
  30. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.c +93 -0
  31. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.h +599 -0
  32. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.inc +573 -0
  33. data/ext/sha3/lib/high/common/Phases.h +25 -0
  34. data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros +19 -9
  35. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +18 -12
  36. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +28 -36
  37. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +18 -12
  38. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +28 -59
  39. data/ext/sha3/lib/low/common/PlSnP-Fallback.inc +291 -0
  40. data/ext/sha3/lib/low/common/SnP-Relaned.h +145 -0
  41. data/ext/sha3/sha3.c +28 -59
  42. data/ext/sha3/sha3.h +4 -13
  43. data/lib/constants.rb +5 -0
  44. data/lib/sha3.rb +25 -24
  45. data.tar.gz.sig +0 -0
  46. metadata +61 -127
  47. metadata.gz.sig +0 -0
  48. data/.yardopts +0 -1
  49. data/ChangeLog.rdoc +0 -27
  50. data/certs/johanns.pem +0 -25
  51. data/lib/sha3/doc.rb +0 -121
  52. data/lib/sha3/version.rb +0 -9
  53. data/sha3.gemspec +0 -54
  54. data/tests.sh +0 -29
@@ -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