tacet-core 0.4.2

Core statistical analysis for timing side-channel detection (no_std)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Orchestration helpers for timing measurements.
//!
//! This module provides platform-independent logic for orchestrating
//! timing measurements, including:
//!
//! - **Pilot phase**: Determining optimal batch size K for timer resolution
//!
//! These helpers are used by both `tacet` (Rust API) and
//! `tacet-c` (C FFI) to share common decision logic.

mod pilot;

pub use pilot::{
    compute_batch_k, compute_batch_k_from_ticks, PilotDecision, UnmeasurableInfo,
    DEFAULT_MAX_BATCH_K, DEFAULT_TARGET_TICKS,
};