tacet 0.4.2

Detect timing side channels in cryptographic code
Documentation
1
2
3
4
5
6
7
8
9
10
//! Platform-specific timing tests
//!
//! Tests for PMU-based cycle counting (requires sudo):
//! - kperf: macOS ARM64 PMU
//! - perf: Linux perf_event

#[path = "platform/kperf.rs"]
mod kperf;
#[path = "platform/perf.rs"]
mod perf;