tacet 0.4.2

Detect timing side channels in cryptographic code
Documentation
//! RustCrypto ecosystem timing tests
//!
//! Tests implementations from the RustCrypto project:
//! - aes: AES-128 block cipher
//! - sha3: SHA-3 (Keccak) hash family
//! - blake2: BLAKE2 hash family
//! - rsa: RSA encryption and signing
//! - chacha20poly1305: ChaCha20-Poly1305 AEAD

#[path = "rustcrypto/aes.rs"]
mod aes;
#[path = "rustcrypto/blake2.rs"]
mod blake2;
#[path = "rustcrypto/chacha20poly1305.rs"]
mod chacha20poly1305;
#[path = "rustcrypto/rsa.rs"]
mod rsa;
#[path = "rustcrypto/sha3.rs"]
mod sha3;