tacet 0.4.2

Detect timing side channels in cryptographic code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Cryptographic library timing tests
//!
//! Tests real-world cryptographic implementations for timing side channels.
//! Organized by crate/ecosystem:
//! - `rustcrypto`: RustCrypto ecosystem (aes, sha3, blake2, rsa, chacha20poly1305)
//! - `ring`: ring crate (AES-GCM, ChaCha20-Poly1305)
//! - `dalek`: dalek ecosystem (x25519-dalek)
//! - `pqcrypto`: Post-quantum crypto (Kyber, Dilithium, Falcon, SPHINCS+)

#[path = "crypto/dalek.rs"]
mod dalek;
#[path = "crypto/pqcrypto.rs"]
mod pqcrypto;
#[path = "crypto/ring.rs"]
mod ring;
#[path = "crypto/rustcrypto.rs"]
mod rustcrypto;