vaea-ntt 0.1.0

High-performance Number Theoretic Transform (NTT) for post-quantum cryptography. ARM NEON SIMD native, constant-time, no_std. ML-DSA (FIPS 204), Falcon, FHE. Dual-licensed AGPL-3.0 + commercial.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# tests/

Integration and security tests.

| Test | Description | Command |
|------|-------------|---------|
| `ntt32_integration` | NTT32 roundtrip, reduction, multiplication for all supported N | `cargo test --test ntt32_integration` |
| `ntt64_integration` | NTT64 roundtrip and arithmetic | `cargo test --test ntt64_integration` |
| `constant_time` | Constant-time property tests | `cargo test --test constant_time` |
| `attack_vectors` | Security attack vector tests | `cargo test --test attack_vectors` |

Run all tests:

```bash
cargo test --release
```