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.
Files changed (74) 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 +153 -63
  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/config.h +26 -0
  16. data/ext/sha3/digest.c +636 -164
  17. data/ext/sha3/digest.h +71 -35
  18. data/ext/sha3/extconf.rb +47 -13
  19. data/ext/sha3/lib/common/align.h +33 -0
  20. data/ext/sha3/{brg_endian.h → lib/common/brg_endian.h} +8 -7
  21. data/ext/sha3/{KeccakHash.c → lib/high/Keccak/FIPS202/KeccakHash.c} +26 -25
  22. data/ext/sha3/{KeccakHash.h → lib/high/Keccak/FIPS202/KeccakHash.h} +34 -19
  23. data/ext/sha3/lib/high/Keccak/KeccakDuplex.c +81 -0
  24. data/ext/sha3/lib/high/Keccak/KeccakDuplex.h +73 -0
  25. data/ext/sha3/lib/high/Keccak/KeccakDuplex.inc +201 -0
  26. data/ext/sha3/lib/high/Keccak/KeccakSponge.c +95 -0
  27. data/ext/sha3/lib/high/Keccak/KeccakSponge.h +70 -0
  28. data/ext/sha3/lib/high/Keccak/KeccakSponge.inc +312 -0
  29. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.c +61 -0
  30. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.h +67 -0
  31. data/ext/sha3/lib/high/Keccak/PRG/KeccakPRG.inc +128 -0
  32. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.c +93 -0
  33. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.h +599 -0
  34. data/ext/sha3/lib/high/Keccak/SP800-185/SP800-185.inc +573 -0
  35. data/ext/sha3/lib/high/common/Phases.h +25 -0
  36. data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros +758 -0
  37. data/ext/sha3/lib/low/KeccakP-1600/common/KeccakP-1600-unrolling.macros +305 -0
  38. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +50 -0
  39. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference.h +23 -0
  40. data/ext/sha3/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +617 -0
  41. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +50 -0
  42. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +413 -0
  43. data/ext/sha3/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.h +23 -0
  44. data/ext/sha3/lib/low/common/PlSnP-Fallback.inc +291 -0
  45. data/ext/sha3/lib/low/common/SnP-Relaned.h +145 -0
  46. data/lib/sha3.rb +25 -28
  47. data.tar.gz.sig +0 -0
  48. metadata +73 -149
  49. metadata.gz.sig +0 -0
  50. data/.yardopts +0 -1
  51. data/ChangeLog.rdoc +0 -27
  52. data/certs/johanns.pem +0 -24
  53. data/ext/sha3/KeccakF-1600-interface.h +0 -40
  54. data/ext/sha3/KeccakSponge.c +0 -192
  55. data/ext/sha3/KeccakSponge.h +0 -113
  56. data/ext/sha3/Optimized64/KeccakF-1600-64.macros +0 -2199
  57. data/ext/sha3/Optimized64/KeccakF-1600-opt64-settings.h +0 -3
  58. data/ext/sha3/Optimized64/KeccakF-1600-opt64.c +0 -508
  59. data/ext/sha3/Optimized64/KeccakF-1600-unrolling.macros +0 -126
  60. data/ext/sha3/Optimized64/SnP-interface.h +0 -47
  61. data/ext/sha3/Reference/KeccakF-1600-reference.c +0 -311
  62. data/ext/sha3/Reference/KeccakF-reference.h +0 -26
  63. data/ext/sha3/Reference/SnP-FBWL-default.c +0 -96
  64. data/ext/sha3/Reference/SnP-FBWL-default.h +0 -26
  65. data/ext/sha3/Reference/SnP-interface.h +0 -42
  66. data/ext/sha3/Reference/displayIntermediateValues.c +0 -158
  67. data/ext/sha3/Reference/displayIntermediateValues.h +0 -34
  68. data/ext/sha3/SnP-Relaned.h +0 -249
  69. data/ext/sha3/sha3.c +0 -62
  70. data/ext/sha3/sha3.h +0 -26
  71. data/lib/sha3/doc.rb +0 -121
  72. data/lib/sha3/version.rb +0 -9
  73. data/sha3.gemspec +0 -53
  74. data/tests.sh +0 -28
@@ -1,113 +0,0 @@
1
- /*
2
- Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni,
3
- Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby
4
- denoted as "the implementer".
5
-
6
- For more information, feedback or questions, please refer to our websites:
7
- http://keccak.noekeon.org/
8
- http://keyak.noekeon.org/
9
- http://ketje.noekeon.org/
10
-
11
- To the extent possible under law, the implementer has waived all copyright
12
- and related or neighboring rights to the source code in this file.
13
- http://creativecommons.org/publicdomain/zero/1.0/
14
- */
15
-
16
- #ifndef _KeccakSponge_h_
17
- #define _KeccakSponge_h_
18
-
19
- #include "SnP-interface.h"
20
- #include <string.h>
21
-
22
- // on Mac OS-X and possibly others, ALIGN(x) is defined in param.h, and -Werror chokes on the redef.
23
- #ifdef ALIGN
24
- #undef ALIGN
25
- #endif
26
-
27
- #if defined(__GNUC__)
28
- #define ALIGN __attribute__ ((aligned(32)))
29
- #elif defined(_MSC_VER)
30
- #define ALIGN __declspec(align(32))
31
- #else
32
- #define ALIGN
33
- #endif
34
-
35
- /**
36
- * Structure that contains the sponge instance attributes for use with the
37
- * Keccak_Sponge* functions.
38
- * It gathers the state processed by the permutation as well as the rate,
39
- * the position of input/output bytes in the state and the phase
40
- * (absorbing or squeezing).
41
- */
42
- ALIGN typedef struct Keccak_SpongeInstanceStruct {
43
- /** The state processed by the permutation. */
44
- ALIGN unsigned char state[SnP_stateSizeInBytes];
45
- /** The value of the rate in bits.*/
46
- unsigned int rate;
47
- /** The position in the state of the next byte to be input (when absorbing) or output (when squeezing). */
48
- unsigned int byteIOIndex;
49
- /** If set to 0, in the absorbing phase; otherwise, in the squeezing phase. */
50
- int squeezing;
51
- } Keccak_SpongeInstance;
52
-
53
- /**
54
- * Function to initialize the state of the Keccak[r, c] sponge function.
55
- * The phase of the sponge function is set to absorbing.
56
- * @param spongeInstance Pointer to the sponge instance to be initialized.
57
- * @param rate The value of the rate r.
58
- * @param capacity The value of the capacity c.
59
- * @pre One must have r+c equal to the supported width of this implementation
60
- * and the rate a multiple of 8 bits (one byte) in this implementation.
61
- * @return Zero if successful, 1 otherwise.
62
- */
63
- int Keccak_SpongeInitialize(Keccak_SpongeInstance *spongeInstance, unsigned int rate, unsigned int capacity);
64
-
65
- /**
66
- * Function to give input data bytes for the sponge function to absorb.
67
- * @param spongeInstance Pointer to the sponge instance initialized by Keccak_SpongeInitialize().
68
- * @param data Pointer to the input data.
69
- * @param dataByteLen The number of input bytes provided in the input data.
70
- * @pre The sponge function must be in the absorbing phase,
71
- * i.e., Keccak_SpongeSqueeze() or Keccak_SpongeAbsorbLastFewBits()
72
- * must not have been called before.
73
- * @return Zero if successful, 1 otherwise.
74
- */
75
- int Keccak_SpongeAbsorb(Keccak_SpongeInstance *spongeInstance, const unsigned char *data, size_t dataByteLen);
76
-
77
- /**
78
- * Function to give input data bits for the sponge function to absorb
79
- * and then to switch to the squeezing phase.
80
- * @param spongeInstance Pointer to the sponge instance initialized by Keccak_SpongeInitialize().
81
- * @param delimitedData Byte containing from 0 to 7 trailing bits
82
- * that must be absorbed.
83
- * These <i>n</i> bits must be in the least significant bit positions.
84
- * These bits must be delimited with a bit 1 at position <i>n</i>
85
- * (counting from 0=LSB to 7=MSB) and followed by bits 0
86
- * from position <i>n</i>+1 to position 7.
87
- * Some examples:
88
- * - If no bits are to be absorbed, then @a delimitedData must be 0x01.
89
- * - If the 2-bit sequence 0,0 is to be absorbed, @a delimitedData must be 0x04.
90
- * - If the 5-bit sequence 0,1,0,0,1 is to be absorbed, @a delimitedData must be 0x32.
91
- * - If the 7-bit sequence 1,1,0,1,0,0,0 is to be absorbed, @a delimitedData must be 0x8B.
92
- * .
93
- * @pre The sponge function must be in the absorbing phase,
94
- * i.e., Keccak_SpongeSqueeze() or Keccak_SpongeAbsorbLastFewBits()
95
- * must not have been called before.
96
- * @pre @a delimitedData ≠ 0x00
97
- * @return Zero if successful, 1 otherwise.
98
- */
99
- int Keccak_SpongeAbsorbLastFewBits(Keccak_SpongeInstance *spongeInstance, unsigned char delimitedData);
100
-
101
- /**
102
- * Function to squeeze output data from the sponge function.
103
- * If the sponge function was in the absorbing phase, this function
104
- * switches it to the squeezing phase
105
- * as if Keccak_SpongeAbsorbLastFewBits(spongeInstance, 0x01) was called.
106
- * @param spongeInstance Pointer to the sponge instance initialized by Keccak_SpongeInitialize().
107
- * @param data Pointer to the buffer where to store the output data.
108
- * @param dataByteLen The number of output bytes desired.
109
- * @return Zero if successful, 1 otherwise.
110
- */
111
- int Keccak_SpongeSqueeze(Keccak_SpongeInstance *spongeInstance, unsigned char *data, size_t dataByteLen);
112
-
113
- #endif