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
//! Fast unit-style integration tests
//!
//! These tests validate configuration, types, and helpers without timing measurements.
//! They run quickly and are suitable for the "quick" nextest profile.

#[path = "unit/config_validation.rs"]
mod config_validation;
#[path = "unit/helpers.rs"]
mod helpers;
#[path = "unit/integration.rs"]
mod integration;
#[path = "unit/reliability.rs"]
mod reliability;
#[path = "unit/types.rs"]
mod types;