confium_tc_keys/lib.rs
1//! Key lifecycle, HSM protection, and production hardening for threshold keys.
2
3#![forbid(unsafe_code)]
4#![allow(missing_docs)] // TODO: document before 1.0
5#![allow(dead_code)] // Key-lifecycle structs are pub API for upcoming HSM/KMS work
6
7pub mod hsm_protection;
8pub mod integrity;
9pub mod key_mgmt_and_protocols;
10pub mod production_hardening;
11pub mod stealth_address;
12pub mod threshold_bip32;