anya-core 1.2.0

Enterprise-grade Bitcoin Infrastructure Platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// [AIR-3][AIS-3][BPC-3][RES-3] HSM provider module declarations
// This follows official Bitcoin Improvement Proposals (BIPs) standards for HSM providers
// Each provider implements the HsmProvider trait with specific security features

pub mod bitcoin;
pub mod hardware;
pub mod ledger;
pub mod pkcs11;
pub mod simulator;
pub mod software;
pub mod tpm;

// Re-export provider structs for use by other modules
pub use self::bitcoin::BitcoinHsmProvider;
pub use self::hardware::HardwareHsmProvider;
pub use self::simulator::SimulatorHsmProvider;
pub use self::software::SoftwareHsmProvider;