sha3 1.0.5 → 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.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.clang-format +54 -0
  4. data/.document +4 -3
  5. data/.rdoc_options +10 -0
  6. data/.rspec +2 -2
  7. data/.rubocop.yml +5 -1
  8. data/CHANGELOG.md +23 -0
  9. data/Gemfile +11 -0
  10. data/LICENSE.txt +1 -1
  11. data/README.md +154 -67
  12. data/Rakefile +9 -3
  13. data/certs/io+sha3@jsg.io.pem +26 -0
  14. data/doc/sha3.rb +81 -0
  15. data/ext/sha3/digest.c +635 -163
  16. data/ext/sha3/digest.h +71 -35
  17. data/ext/sha3/extconf.rb +42 -38
  18. data/ext/sha3/lib/high/Keccak/KeccakDuplex.c +81 -0
  19. data/ext/sha3/lib/high/Keccak/KeccakDuplex.h +73 -0
  20. data/ext/sha3/lib/high/Keccak/KeccakDuplex.inc +201 -0
  21. data/ext/sha3/lib/high/Keccak/KeccakSponge.c +2 -18
  22. data/ext/sha3/lib/high/Keccak/KeccakSponge.h +4 -10
  23. data/ext/sha3/lib/high/Keccak/KeccakSponge.inc +27 -31
  24. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.c +61 -0
  25. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.h +67 -0
  26. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.inc +128 -0
  27. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.c +93 -0
  28. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.h +599 -0
  29. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.inc +573 -0
  30. data/ext/sha3/lib/high/common/Phases.h +25 -0
  31. data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros +19 -9
  32. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +18 -12
  33. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +28 -36
  34. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +18 -12
  35. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +28 -59
  36. data/ext/sha3/lib/low/common/PlSnP-Fallback.inc +291 -0
  37. data/ext/sha3/lib/low/common/SnP-Relaned.h +145 -0
  38. data/lib/sha3.rb +25 -28
  39. data.tar.gz.sig +0 -0
  40. metadata +55 -115
  41. metadata.gz.sig +0 -0
  42. data/.yardopts +0 -1
  43. data/ChangeLog.rdoc +0 -27
  44. data/certs/johanns.pem +0 -25
  45. data/ext/sha3/sha3.c +0 -62
  46. data/ext/sha3/sha3.h +0 -26
  47. data/lib/sha3/doc.rb +0 -121
  48. data/lib/sha3/version.rb +0 -9
  49. data/sha3.gemspec +0 -54
  50. data/tests.sh +0 -29
data/ext/sha3/digest.h CHANGED
@@ -1,45 +1,81 @@
1
- /* Copyright (c) 2012 - 2013 Johanns Gregorian <io+sha3@jsani.com> */
1
+ // Copyright (c) 2012 - 2025 Johanns Gregorian <io+sha3@jsg.io>
2
2
 
3
3
  #ifndef _DIGEST_H_
4
4
  #define _DIGEST_H_
5
5
 
6
+ #include <ruby.h>
7
+ #include <ruby/encoding.h>
8
+ #include <string.h>
9
+
10
+ #include "KeccakHash.h"
11
+
6
12
  #ifdef __cplusplus
7
- extern "C"
8
- {
13
+ extern "C" {
9
14
  #endif
10
15
 
11
- // From ruby/ext/openssl/ossl_digest.c
12
- #define GETMDX(obj, mdx) \
13
- do \
14
- { \
15
- Data_Get_Struct((obj), MDX, (mdx)); \
16
- if (!(mdx)) \
17
- { \
18
- rb_raise(rb_eRuntimeError, "Digest data not initialized!"); \
19
- } \
20
- } while (0)
21
-
22
- #define SAFEGETMDX(obj, mdx) \
23
- do \
24
- { \
25
- if (!rb_obj_is_kind_of(obj, cSHA3Digest)) \
26
- { \
27
- rb_raise(rb_eTypeError, "wrong argument (%s)! (expected %s)", \
28
- rb_obj_classname(obj), rb_class2name(cSHA3Digest)); \
29
- } \
30
- GETMDX(obj, mdx); \
31
- } while (0)
32
-
33
- extern VALUE cSHA3Digest;
34
- extern VALUE eSHA3DigestError;
35
-
36
- typedef struct
37
- {
38
- Keccak_HashInstance *state;
39
- int hashbitlen;
40
- } MDX;
41
-
42
- void Init_sha3_n_digest(void);
16
+ typedef enum { SHA3_224 = 0, SHA3_256, SHA3_384, SHA3_512, SHAKE_128, SHAKE_256 } algorithm_type;
17
+
18
+ typedef HashReturn (*keccak_init_func)(Keccak_HashInstance*);
19
+
20
+ typedef struct {
21
+ Keccak_HashInstance* state;
22
+ int hashbitlen;
23
+ algorithm_type algorithm;
24
+ } MDX;
25
+
26
+ VALUE sha3_module;
27
+ VALUE digest_class;
28
+ VALUE digest_error_class;
29
+
30
+ /* Static IDs for faster symbol lookup */
31
+ static ID sha3_224_id;
32
+ static ID sha3_256_id;
33
+ static ID sha3_384_id;
34
+ static ID sha3_512_id;
35
+ static ID shake_128_id;
36
+ static ID shake_256_id;
37
+
38
+ // TypedData functions
39
+ extern const rb_data_type_t mdx_type;
40
+
41
+ // Static inline functions replacing macros
42
+ static inline void get_mdx(VALUE obj, MDX** mdx) {
43
+ TypedData_Get_Struct((obj), MDX, &mdx_type, (*mdx));
44
+ if (!(*mdx)) {
45
+ rb_raise(rb_eRuntimeError, "Digest data not initialized!");
46
+ }
47
+ }
48
+
49
+ static inline void safe_get_mdx(VALUE obj, MDX** mdx) {
50
+ if (!rb_obj_is_kind_of(obj, digest_class)) {
51
+ rb_raise(rb_eTypeError, "wrong argument (%s)! (expected %s)", rb_obj_classname(obj),
52
+ rb_class2name(digest_class));
53
+ }
54
+ get_mdx(obj, mdx);
55
+ }
56
+
57
+ /* Allocation and initialization */
58
+ static VALUE rb_digest_alloc(VALUE);
59
+ static VALUE rb_digest_init(int, VALUE*, VALUE);
60
+
61
+ /* Core digest operations */
62
+ static VALUE rb_digest_copy(VALUE, VALUE);
63
+ static VALUE rb_digest_finish(int, VALUE*, VALUE);
64
+ static VALUE rb_digest_reset(VALUE);
65
+ static VALUE rb_digest_update(VALUE, VALUE);
66
+
67
+ /* Digest properties */
68
+ static VALUE rb_digest_block_length(VALUE);
69
+ static VALUE rb_digest_length(VALUE);
70
+ static VALUE rb_digest_name(VALUE);
71
+
72
+ /* Output methods */
73
+ static VALUE rb_digest_digest(int, VALUE*, VALUE);
74
+ static VALUE rb_digest_hexdigest(int, VALUE*, VALUE);
75
+ static VALUE rb_digest_hex_squeeze(VALUE, VALUE);
76
+ static VALUE rb_digest_squeeze(VALUE, VALUE);
77
+ static VALUE rb_digest_self_digest(VALUE, VALUE, VALUE);
78
+ static VALUE rb_digest_self_hexdigest(VALUE, VALUE, VALUE);
43
79
 
44
80
  #ifdef __cplusplus
45
81
  }
data/ext/sha3/extconf.rb CHANGED
@@ -3,48 +3,52 @@
3
3
  require 'mkmf'
4
4
  require 'rbconfig'
5
5
 
6
- # Maintaining XKCP lib directory structure to hopefully simplify
7
- # future upgrades.
6
+ b64 = 8.size == 8
7
+ extension_name = 'sha3_digest'
8
+ ref_dir = b64 ? 'ref-64bits' : 'ref-32bits'
8
9
 
9
- keccak_base_files = [
10
- 'lib/high/Keccak/KeccakSponge.c',
11
- 'lib/high/Keccak/FIPS202/KeccakHash.c'
12
- ]
10
+ dir_config(extension_name)
13
11
 
14
- if 1.size == 8
15
- Logging.message "=== Using 64-bit reference ===\n"
12
+ # Set compiler flags
13
+ $CFLAGS << ' -fomit-frame-pointer -O3 -g0 -fms-extensions'
16
14
 
17
- keccak_base_files << 'lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c'
18
- else
19
- Logging.message "=== Using 32-bit reference ===\n"
15
+ # Add architecture-specific optimizations if enabled
16
+ $CFLAGS << ' -march=native' if enable_config('march-tune-native', false)
20
17
 
21
- keccak_base_files << 'lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c'
22
- end
18
+ # Add security hardening flags
19
+ $CFLAGS << ' -D_FORTIFY_SOURCE=2 -fstack-protector-strong'
23
20
 
24
- FileUtils.cp keccak_base_files.map { |f| "#{$srcdir}/#{f}" }, $srcdir
21
+ # Add warning flags to catch potential issues
22
+ $CFLAGS << ' -Wall -Wextra -Wformat -Wformat-security'
25
23
 
26
- extension_name = 'sha3_n'
27
- dir_config(extension_name)
24
+ # Add vectorization flags for better performance on supported platforms
25
+ $CFLAGS << ' -ftree-vectorize' if RUBY_PLATFORM =~ /x86_64|amd64|arm64/
26
+
27
+ # Find all relevant subdirectories and filter appropriately
28
+ vpath_dirs = Dir.glob("#{$srcdir}/lib/**/*")
29
+ .select { |path| File.directory?(path) }
30
+ .select { |dir| !dir.include?('KeccakP-1600/ref-') || dir.include?(ref_dir) }
31
+
32
+ # Process directory paths for both VPATH and INCFLAGS
33
+ vpath_dirs_processed = vpath_dirs.map { |dir| dir.sub($srcdir, '') }
34
+
35
+ # Add source directories to VPATH
36
+ $VPATH << vpath_dirs_processed
37
+ .map { |dir| "$(srcdir)#{dir}" }
38
+ .join(File::PATH_SEPARATOR)
39
+
40
+ # Add include flags
41
+ $INCFLAGS << vpath_dirs_processed
42
+ .map { |dir| " -I$(srcdir)#{dir}" }
43
+ .join('')
44
+
45
+ # Base source files
46
+ $srcs = ['digest.c']
47
+
48
+ # Find and add all .c files from the filtered directories
49
+ $srcs += vpath_dirs
50
+ .flat_map { |dir| Dir.glob("#{dir}/*.c") }
51
+ .map { |file| File.basename(file) }
52
+ .uniq
28
53
 
29
- $INCFLAGS << [
30
- ' -I$(src) ',
31
- ' -I$(srcdir)lib/ ',
32
- ' -I$(srcdir)/lib/common ',
33
- ' -I$(srcdir)/lib/high/Keccak ',
34
- ' -I$(srcdir)/lib/high/Keccak/FIPS202 ',
35
- ' -I$(srcdir)/lib/low/KeccakP-1600/common ',
36
- ' -I$(srcdir)/lib/low/KeccakP-1600/ref-32bits ',
37
- ' -I$(srcdir)/lib/low/KeccakP-1600/ref-64bits '
38
- ].join
39
-
40
- $CFLAGS << ' -fomit-frame-pointer -O3 -g0 -fms-extensions '
41
- $CFLAGS << ' -march=native ' if enable_config('march-tune-native', false)
42
-
43
- find_header('sha3.h')
44
- find_header('digest.h')
45
- find_header('align.h')
46
- find_header('brg_endian.h')
47
- find_header('KeccakSponge.h')
48
- find_header('KeccakHash.h')
49
-
50
- create_makefile extension_name
54
+ create_makefile(extension_name)
@@ -0,0 +1,81 @@
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 "KeccakDuplex.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
+ #include "KeccakDuplex.inc"
31
+ #undef prefix
32
+ #undef SnP
33
+ #undef SnP_width
34
+ #undef SnP_Permute
35
+ #undef SnP_FastLoop_Absorb
36
+ #endif
37
+
38
+ #ifdef XKCP_has_KeccakP400
39
+ #include "KeccakP-400-SnP.h"
40
+
41
+ #define prefix KeccakWidth400
42
+ #define SnP KeccakP400
43
+ #define SnP_width 400
44
+ #define SnP_Permute KeccakP400_Permute_20rounds
45
+ #include "KeccakDuplex.inc"
46
+ #undef prefix
47
+ #undef SnP
48
+ #undef SnP_width
49
+ #undef SnP_Permute
50
+ #undef SnP_FastLoop_Absorb
51
+ #endif
52
+
53
+ #ifdef XKCP_has_KeccakP800
54
+ #include "KeccakP-800-SnP.h"
55
+
56
+ #define prefix KeccakWidth800
57
+ #define SnP KeccakP800
58
+ #define SnP_width 800
59
+ #define SnP_Permute KeccakP800_Permute_22rounds
60
+ #include "KeccakDuplex.inc"
61
+ #undef prefix
62
+ #undef SnP
63
+ #undef SnP_width
64
+ #undef SnP_Permute
65
+ #undef SnP_FastLoop_Absorb
66
+ #endif
67
+
68
+ #ifdef XKCP_has_KeccakP1600
69
+ #include "KeccakP-1600-SnP.h"
70
+
71
+ #define prefix KeccakWidth1600
72
+ #define SnP KeccakP1600
73
+ #define SnP_width 1600
74
+ #define SnP_Permute KeccakP1600_Permute_24rounds
75
+ #include "KeccakDuplex.inc"
76
+ #undef prefix
77
+ #undef SnP
78
+ #undef SnP_width
79
+ #undef SnP_Permute
80
+ #undef SnP_FastLoop_Absorb
81
+ #endif
@@ -0,0 +1,73 @@
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 _KeccakDuplex_h_
18
+ #define _KeccakDuplex_h_
19
+
20
+ /* For the documentation, please follow the link: */
21
+ /* #include "KeccakDuplex-documentation.h" */
22
+
23
+ #include <string.h>
24
+ #include "align.h"
25
+ #include "config.h"
26
+
27
+ #define XKCP_DeclareDuplexStructure(prefix, state_t) \
28
+ typedef struct prefix##_DuplexInstanceStruct { \
29
+ state_t state; \
30
+ unsigned int rate; \
31
+ unsigned int byteInputIndex; \
32
+ unsigned int byteOutputIndex; \
33
+ } prefix##_DuplexInstance;
34
+
35
+ #define XKCP_DeclareDuplexFunctions(prefix) \
36
+ int prefix##_DuplexInitialize(prefix##_DuplexInstance *duplexInstance, unsigned int rate, unsigned int capacity); \
37
+ int prefix##_Duplexing(prefix##_DuplexInstance *duplexInstance, const unsigned char *sigmaBegin, unsigned int sigmaBeginByteLen, unsigned char *Z, unsigned int ZByteLen, unsigned char delimitedSigmaEnd); \
38
+ int prefix##_DuplexingFeedPartialInput(prefix##_DuplexInstance *duplexInstance, const unsigned char *input, unsigned int inputByteLen); \
39
+ int prefix##_DuplexingFeedZeroes(prefix##_DuplexInstance *duplexInstance, unsigned int inputByteLen); \
40
+ int prefix##_DuplexingOverwritePartialInput(prefix##_DuplexInstance *duplexInstance, const unsigned char *input, unsigned int inputByteLen); \
41
+ int prefix##_DuplexingOverwriteWithZeroes(prefix##_DuplexInstance *duplexInstance, unsigned int inputByteLen); \
42
+ int prefix##_DuplexingGetFurtherOutput(prefix##_DuplexInstance *duplexInstance, unsigned char *out, unsigned int outByteLen); \
43
+ int prefix##_DuplexingGetFurtherOutputAndAdd(prefix##_DuplexInstance *duplexInstance, const unsigned char *input, unsigned char *output, unsigned int outputByteLen);
44
+
45
+ #ifdef XKCP_has_KeccakP200
46
+ #include "KeccakP-200-SnP.h"
47
+ XKCP_DeclareDuplexStructure(KeccakWidth200, KeccakP200_stateSizeInBytes, KeccakP200_stateAlignment)
48
+ XKCP_DeclareDuplexFunctions(KeccakWidth200)
49
+ #define XKCP_has_Duplex_Keccak_width200
50
+ #endif
51
+
52
+ #ifdef XKCP_has_KeccakP400
53
+ #include "KeccakP-400-SnP.h"
54
+ XKCP_DeclareDuplexStructure(KeccakWidth400, KeccakP400_stateSizeInBytes, KeccakP400_stateAlignment)
55
+ XKCP_DeclareDuplexFunctions(KeccakWidth400)
56
+ #define XKCP_has_Duplex_Keccak_width400
57
+ #endif
58
+
59
+ #ifdef XKCP_has_KeccakP800
60
+ #include "KeccakP-800-SnP.h"
61
+ XKCP_DeclareDuplexStructure(KeccakWidth800, KeccakP800_stateSizeInBytes, KeccakP800_stateAlignment)
62
+ XKCP_DeclareDuplexFunctions(KeccakWidth800)
63
+ #define XKCP_has_Duplex_Keccak_width800
64
+ #endif
65
+
66
+ #ifdef XKCP_has_KeccakP1600
67
+ #include "KeccakP-1600-SnP.h"
68
+ XKCP_DeclareDuplexStructure(KeccakWidth1600, KeccakP1600_state)
69
+ XKCP_DeclareDuplexFunctions(KeccakWidth1600)
70
+ #define XKCP_has_Duplex_Keccak_width1600
71
+ #endif
72
+
73
+ #endif
@@ -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
@@ -79,6 +79,7 @@ http://creativecommons.org/publicdomain/zero/1.0/
79
79
 
80
80
  #define prefix KeccakWidth1600
81
81
  #define SnP KeccakP1600
82
+ #define SnP_state KeccakP1600_state
82
83
  #define SnP_width 1600
83
84
  #define SnP_Permute KeccakP1600_Permute_24rounds
84
85
  #if defined(KeccakF1600_FastLoop_supported)
@@ -87,24 +88,7 @@ http://creativecommons.org/publicdomain/zero/1.0/
87
88
  #include "KeccakSponge.inc"
88
89
  #undef prefix
89
90
  #undef SnP
90
- #undef SnP_width
91
- #undef SnP_Permute
92
- #undef SnP_FastLoop_Absorb
93
- #endif
94
-
95
- #ifdef XKCP_has_KeccakP1600
96
- #include "KeccakP-1600-SnP.h"
97
-
98
- #define prefix KeccakWidth1600_12rounds
99
- #define SnP KeccakP1600
100
- #define SnP_width 1600
101
- #define SnP_Permute KeccakP1600_Permute_12rounds
102
- #if defined(KeccakP1600_12rounds_FastLoop_supported)
103
- #define SnP_FastLoop_Absorb KeccakP1600_12rounds_FastLoop_Absorb
104
- #endif
105
- #include "KeccakSponge.inc"
106
- #undef prefix
107
- #undef SnP
91
+ #undef SnP_state
108
92
  #undef SnP_width
109
93
  #undef SnP_Permute
110
94
  #undef SnP_FastLoop_Absorb
@@ -24,9 +24,9 @@ http://creativecommons.org/publicdomain/zero/1.0/
24
24
  #include "align.h"
25
25
  #include "config.h"
26
26
 
27
- #define XKCP_DeclareSpongeStructure(prefix, size, alignment) \
28
- ALIGN(alignment) typedef struct prefix##_SpongeInstanceStruct { \
29
- unsigned char state[size]; \
27
+ #define XKCP_DeclareSpongeStructure(prefix, state_t) \
28
+ typedef struct prefix##_SpongeInstanceStruct { \
29
+ state_t state; \
30
30
  unsigned int rate; \
31
31
  unsigned int byteIOIndex; \
32
32
  int squeezing; \
@@ -62,15 +62,9 @@ http://creativecommons.org/publicdomain/zero/1.0/
62
62
 
63
63
  #ifdef XKCP_has_KeccakP1600
64
64
  #include "KeccakP-1600-SnP.h"
65
- XKCP_DeclareSpongeStructure(KeccakWidth1600, KeccakP1600_stateSizeInBytes, KeccakP1600_stateAlignment)
65
+ XKCP_DeclareSpongeStructure(KeccakWidth1600, KeccakP1600_state)
66
66
  XKCP_DeclareSpongeFunctions(KeccakWidth1600)
67
67
  #define XKCP_has_Sponge_Keccak_width1600
68
68
  #endif
69
69
 
70
- #ifdef XKCP_has_KeccakP1600
71
- #include "KeccakP-1600-SnP.h"
72
- XKCP_DeclareSpongeStructure(KeccakWidth1600_12rounds, KeccakP1600_stateSizeInBytes, KeccakP1600_stateAlignment)
73
- XKCP_DeclareSpongeFunctions(KeccakWidth1600_12rounds)
74
- #endif
75
-
76
70
  #endif