-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathmod.rs
More file actions
37 lines (31 loc) · 821 Bytes
/
mod.rs
File metadata and controls
37 lines (31 loc) · 821 Bytes
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
// Copyright 2023-2025 Irreducible Inc.
pub(crate) mod packed;
pub(crate) mod packed_macros;
pub mod packed_1;
pub mod packed_128;
pub mod packed_16;
pub mod packed_2;
pub mod packed_256;
pub mod packed_32;
pub mod packed_4;
pub mod packed_512;
pub mod packed_64;
pub mod packed_8;
pub mod packed_aes_128;
pub mod packed_aes_16;
pub mod packed_aes_256;
pub mod packed_aes_32;
pub mod packed_aes_512;
pub mod packed_aes_64;
pub mod packed_aes_8;
pub mod packed_ghash_128;
pub mod packed_ghash_256;
pub mod packed_ghash_512;
mod nibble_invert_128b;
pub(crate) mod univariate_mul_utils_128;
pub(super) mod bitwise_and_arithmetic;
pub(crate) mod packed_arithmetic;
pub(super) mod pairwise_arithmetic;
pub(super) mod pairwise_table_arithmetic;
pub(super) mod reuse_multiply_arithmetic;
pub(super) mod scaled_arithmetic;