1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
//! SHA-3 is a modern hash function specified by
//! [FIPS 202](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf).
//!
//! SHA-3 is based on the [_sponge construction_](sponge). It keeps an internal
//! state, splits the input data into blocks and processes them one by one,
//! updating the state. Each step is carried out in a fixed number of rounds.
//! This is called the absorbing phase, an analogy to a sponge soaking up water.
//!
//! After all blocks are processed, part of the internal state is used to
//! extract a piece of the hash output, and then the entirety of the internal
//! state is processed again to generate a new state. This is repeated until the
//! desired output length is reached. This is called the squeezing phase,
//! an analogy to a sponge being squeezed out.
//!
//! The block size (r, also known as rate) and the output size (d) are
//! parameters of the hashing algorithm. There is also an implicit parameter
//! called the capacity (c), which is the difference between the block size and
//! the size of the internal state. The capacity is important for security, and
//! if it is too small, the hash function becomes vulnerable to attacks.
//!
//! The internal permutation of the algorithm is [Keccak-p](keccak_p).
use ;
pub use rctable;
/// [SHA-3 hash](self) with 224-bit output.
);
/// [SHA-3 hash](self) with 256-bit output.
);
/// [SHA-3 hash](self) with 384-bit output.
);
/// [SHA-3 hash](self) with 512-bit output.
);
const NUM_ROWS: usize = 5;
const NUM_COLS: usize = 5;
/// Number of rounds in the [Keccak-p permutation](keccak_p).
pub const NUM_ROUNDS: usize = 24;
/// The internal state of the [SHA-3 algorithm](self), also referred to as $A$.
/// This is a 5x5 matrix of 64-bit words.
///
/// The state is accessed as $A_{x, y, z}$, where $x$ is the column, $y$ is the
/// row and $z$ is the _bit_ being accessed, $x, y \in \{ 0, 1, \dots, 4 \}$,
/// $z \in \{ 0, 1, \dots, 63 \}$. The bit can be omitted to access the entire
/// word.
pub type State = ;
/// Offsets used by the $\rho$ step.
pub const RHO_OFFSETS: = ;
/// The round constants used by the $\iota$ step. These were generated via
/// [`rctable`](rctable::rctable).
pub const RC: = ;
/// The sponge construction with the rate (block size) `R` and output size `D`,
/// and function [Keccak-p](keccak_p).
///
/// This process is described in the [module documentation](self).
/// The Keccak-p permutation specified in Section 3.3 of the specification.
///
/// Applies [`NUM_ROUNDS`] rounds of the [$\theta$](theta), [$\rho$](rho),
/// [$\pi$](pi), [$\chi$](chi), and [$\iota$](iota) steps.
///
/// The $\theta$, $\rho$, and $\pi$ steps add diffusion.
///
/// The $\chi$ step adds non-linearity with AND operations, which is crucial for
/// security.
///
/// The $\iota$ step adds a round constant to the state.
/// The $\theta$ step specified in Section 3.2.1 of the specification.
///
/// First, a new word array $C$ is computed:
///
/// $$
/// C_{x, z} = A_ {x, 0, z} \oplus A_{x, 1, z} \oplus A_{x, 2, z} \oplus A_{x,
/// 3, z} \oplus A_{x, 4, z},\\
/// x \in \{0, 1, \dots, 4\},
/// z \in \{0, 1, \dots, 63\}
/// $$
///
/// Where $A$ is the [internal state](State). To operate on words instead of
/// bits, the $z$ index can be omitted:
///
/// $$
/// C_{x} = A_ {x, 0} \oplus A_{x, 1} \oplus A_{x, 2} \oplus A_{x, 3} \oplus
/// A_{x, 4},\\
/// x \in \{0, 1, \dots, 4\},
/// $$
///
/// Clearly, $C_{x}$ is the XOR of all words in column $x$ of $A$.
///
/// Next, a word array $D$ is computed:
///
/// $$
/// D_{x, z} = C_{x - 1 \pmod{5}, \space z} \oplus C_{x + 1 \pmod{5}, \space z -
/// 1 \pmod{64}},\\
/// x \in \{0, 1, \dots, 4\},
/// z \in \{0, 1, \dots, 63\}
/// $$
///
/// The interesting bit is that $D_{\dots, \space z}$ is computed using
/// $C_{\dots, \space z - 1 \pmod{64}}$. The $z - 1 \pmod{64}$ represents a
/// rotation of the word by one bit to the right. However, due to the specific
/// bit convention used by SHA-3 (described in Section B.1 of the
/// specification — essentially, the bit order in the specification is left to
/// right, whereas computers order bits right to left, the rightmost bit being
/// the least significant), this rotation is actually to the left:
///
/// $$
/// D_{x} = C_{x - 1 \pmod{5}} \oplus \mathrm{ROTL}(C_{x + 1 \pmod{5}}),\\
/// x \in \{0, 1, \dots, 4\}
/// $$
///
/// Where $\mathrm{ROTL}$ is the left rotation by one bit.
///
/// Finally, the state is updated:
/// $$
/// A_{x, y, z}^{\prime} = A_{x, y, z} \oplus D_{x, z},\\
/// x, y \in \{0, 1, \dots, 4\},
/// z \in \{0, 1, \dots, 63\}
/// $$
///
/// Which is equivalent to the following operations on words:
/// $$
/// A_{x, y}^{\prime} = A_{x, y} \oplus D_{x},\\
/// x, y \in \{0, 1, \dots, 4\}
/// $$
///
/// Since $D$ only depends on $C$, and $C$ is never updated, the $D$ array can
/// be inlined:
///
/// $$
/// A_{x, y} \gets A_{x, y} \oplus C_{x - 1 \pmod{5}} \oplus
/// \mathrm{ROTL}(C_{x + 1 \pmod{5}}),\\
/// x, y \in \{0, 1, \dots, 4\},\\
/// $$
/// The $\rho$ step specified in Section 3.2.2 of the specification.
///
/// This step rotates each word in the state by a fixed number of bits, encoded
/// in the [`RHO_OFFSETS`](RHO_OFFSETS) table, referred to as $\rho$.
///
/// $$
/// A_{x, y, z} \gets A_{x, \space y, \space z - \rho(x, y) \pmod{64}}
/// \Rightarrow A_{x, y} \gets \mathrm{ROTL}(A_{x, y}, \rho(x, y)),\\
/// x, y \in \{0, 1, \dots, 4\},
/// z \in \{0, 1, \dots, 63\}
/// $$
///
/// Where $\mathrm{ROTL}(b, n)$ is the binary left rotation of number $b$ by $n$
/// bits.
/// The $\pi$ step specified in Section 3.2.3 of the specification.
///
/// Shuffles the words in the state:
///
/// $$
/// A_{x, y, z}^{\prime} = A_{x + 3y \pmod{5}, \space x, \space z},
/// \Rightarrow A_{x, y}^{\prime} = A_{x + 3y \pmod{5}, \space x}, \\
/// x, y \in \{0, 1, \dots, 4\},
/// z \in \{0, 1, \dots, 63\},\\
/// A \gets A^{\prime}
/// $$
/// The $\chi$ step specified in Section 3.2.4 of the specification.
///
/// Adds nonlinearity by applying a binary AND operation to words:
///
/// $$
/// A_{x, y, z}^{\prime} = A_{x, y, z} \oplus ((A_{x+1 \pmod{5}, \space y,
/// \space z} \oplus 1) \cdot A_{x+2 \pmod{5}, \space y, \space z}),\\
/// x, y \in \{0, 1, \dots, 4\},
/// z \in \{0, 1, \dots, 63\}
/// $$
///
/// Where $\cdot$ is the binary AND operation. $b \oplus 1$ is equivalent to a
/// bitwise NOT of bit $b$, hence we can apply the above to words as follows:
///
/// $$
/// A_{x, y}^{\prime} = A_{x, y} \oplus ((\mathrm{NOT}(A_{x+1 \pmod{5}, \space
/// y })) \cdot A_{x+2 \pmod{5}, \space y}) \\
/// x, y \in \{0, 1, \dots, 4\},\\
/// A \gets A^{\prime}
/// $$
/// The $\iota$ step specified in Section 3.2.5 of the specification.
///
/// Applies a round constant to the state, depending on the round number $i_r$:
///
/// $$
/// A_{0, 0} \gets A_{0, 0} \oplus RC_{i_r}
/// $$
///
/// Round constant generation is implemented in [`rctable`](rctable::rctable).
/// Pad the input data to a multiple of the block size (r, also known as rate)
/// in the Keccak-p permutation.
///
/// The padding is specified in Section 5.1 of the specification, called
/// pad10*1. It pads the data by adding a single 1 bit, as many 0 bits as
/// needed, and a final 1 bit.
///
/// Additionally, the bit string "10" is appended to the data before padding.
/// This is called the _domain separator_ and serves to disambiguate SHA-3's
/// usage of Keccak-p from other uses of Keccak-p.
+ '_