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
// fips 203 parameter sets. ml-kem-512, -768, -1024 (security categories 1, 3, 5).
// internal code is generic over the Params trait; concrete byte sizes live on the
// public api types.
pub const N: usize = 256;
pub const Q: u16 = 3329;
pub const POLY_BYTES: usize = 384; // 256 * 12 / 8
;
;
;