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
use crate::spec::{Spec, State};
use halo2curves::FieldExt;
impl<F: FieldExt, const T: usize, const RATE: usize> Spec<F, T, RATE> {
pub fn permute(&self, state: &mut State<F, T>) {
let r_f = self.r_f / 2;
{
state.add_constants(&self.constants.start[0]);
for round_constants in self.constants.start.iter().skip(1).take(r_f - 1) {
state.sbox_full();
state.add_constants(round_constants);
self.mds_matrices.mds.apply(state);
}
state.sbox_full();
state.add_constants(self.constants.start.last().unwrap());
self.mds_matrices.pre_sparse_mds.apply(state)
}
{
for (round_constant, sparse_mds) in self
.constants
.partial
.iter()
.zip(self.mds_matrices.sparse_matrices.iter())
{
state.sbox_part();
state.add_constant(round_constant);
sparse_mds.apply(state);
}
}
{
for round_constants in self.constants.end.iter() {
state.sbox_full();
state.add_constants(round_constants);
self.mds_matrices.mds.apply(state);
}
state.sbox_full();
self.mds_matrices.mds.apply(state);
}
}
}
#[cfg(test)]
mod tests {
use super::State;
use crate::spec::{tests::SpecRef, Spec};
use group::ff::PrimeField;
use halo2curves::bn256::Fr;
use halo2curves::FieldExt;
impl<F: FieldExt, const T: usize, const RATE: usize> SpecRef<F, T, RATE> {
fn permute(&self, state: &mut State<F, T>) {
let (r_f, r_p) = (self.r_f / 2, self.r_p);
for constants in self.constants.iter().take(r_f) {
state.add_constants(constants);
state.sbox_full();
self.mds.apply(state);
}
for constants in self.constants.iter().skip(r_f).take(r_p) {
state.add_constants(constants);
state.sbox_part();
self.mds.apply(state);
}
for constants in self.constants.iter().skip(r_f + r_p) {
state.add_constants(constants);
state.sbox_full();
self.mds.apply(state);
}
}
}
#[test]
fn cross_test() {
use halo2curves::group::ff::Field;
use rand_core::OsRng;
use std::time::Instant;
macro_rules! run_test {
(
$([$RF:expr, $RP:expr, $T:expr, $RATE:expr]),*
) => {
$(
{
const R_F: usize = $RF;
const R_P: usize = $RP;
const T: usize = $T;
const RATE: usize = $RATE;
let mut state = State(
(0..T)
.map(|_| Fr::random(OsRng))
.collect::<Vec<Fr>>()
.try_into().unwrap(),
);
let spec = SpecRef::<Fr, T, RATE>::new(R_F, R_P);
let mut state_expected = state.clone();
spec.permute(&mut state_expected);
let spec = Spec::<Fr, T, RATE>::new(R_F, R_P);
let now = Instant::now();
{
spec.permute(&mut state);
}
let elapsed = now.elapsed();
println!("Elapsed: {:.2?}", elapsed);
assert_eq!(state_expected, state);
}
)*
};
}
run_test!([8, 57, 3, 2]);
run_test!([8, 57, 4, 3]);
run_test!([8, 57, 5, 4]);
run_test!([8, 57, 6, 5]);
run_test!([8, 57, 7, 6]);
run_test!([8, 57, 8, 7]);
run_test!([8, 57, 9, 8]);
run_test!([8, 57, 10, 9]);
}
#[test]
fn test_against_test_vectors() {
{
const R_F: usize = 8;
const R_P: usize = 57;
const T: usize = 3;
const RATE: usize = 2;
let state = State(
vec![0u64, 1, 2]
.into_iter()
.map(Fr::from)
.collect::<Vec<Fr>>()
.try_into()
.unwrap(),
);
let spec_ref = SpecRef::<Fr, T, RATE>::new(R_F, R_P);
let mut state_0 = state.clone();
spec_ref.permute(&mut state_0);
let expected = vec![
"7853200120776062878684798364095072458815029376092732009249414926327459813530",
"7142104613055408817911962100316808866448378443474503659992478482890339429929",
"6549537674122432311777789598043107870002137484850126429160507761192163713804",
];
for (word, expected) in state_0.words().into_iter().zip(expected.iter()) {
assert_eq!(word, Fr::from_str_vartime(expected).unwrap());
}
let spec = Spec::<Fr, T, RATE>::new(R_F, R_P);
let mut state_1 = state;
spec.permute(&mut state_1);
assert_eq!(state_0, state_1);
}
{
const R_F: usize = 8;
const R_P: usize = 60;
const T: usize = 5;
const RATE: usize = 4;
let state = State(
vec![0u64, 1, 2, 3, 4]
.into_iter()
.map(Fr::from)
.collect::<Vec<Fr>>()
.try_into()
.unwrap(),
);
let spec_ref = SpecRef::<Fr, T, RATE>::new(R_F, R_P);
let mut state_0 = state.clone();
spec_ref.permute(&mut state_0);
let expected = vec![
"18821383157269793795438455681495246036402687001665670618754263018637548127333",
"7817711165059374331357136443537800893307845083525445872661165200086166013245",
"16733335996448830230979566039396561240864200624113062088822991822580465420551",
"6644334865470350789317807668685953492649391266180911382577082600917830417726",
"3372108894677221197912083238087960099443657816445944159266857514496320565191",
];
for (word, expected) in state_0.words().into_iter().zip(expected.iter()) {
assert_eq!(word, Fr::from_str_vartime(expected).unwrap());
}
let spec = Spec::<Fr, T, RATE>::new(R_F, R_P);
let mut state_1 = state;
spec.permute(&mut state_1);
assert_eq!(state_0, state_1);
}
}
}