signstar_yubihsm2/automation/mod.rs
1//! Provides utilities for YubiHSM automation.
2
3mod command;
4mod error;
5mod runner;
6mod scenario;
7
8pub use command::{AuditOption, AuthenticatedCommandChain, Command, FileBackedCommand};
9pub use error::{Error, FileBackedScenarioReturnValueMismatch};
10pub use runner::{
11 CommandReturnValue,
12 Ed25519Signature,
13 LOG_DIGEST_SIZE,
14 LogDigest,
15 LogEntries,
16 LogEntry,
17 ScenarioReturnValue,
18 ScenarioRunner,
19};
20pub use scenario::{FileBackedScenario, Scenario};