aegisnet-hsm 0.1.0

AegisNet Hardware Security Module (HSM) Atomic Signing Library with PKCS#11 support and post-quantum readiness
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod hsm;
pub mod types;

pub use hsm::atomic_signer::HsmAtomicSigner;
pub use types::signature::XmssSignature;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_module_structure() {
        let _ = std::any::TypeId::of::<HsmAtomicSigner>();
        let _ = std::any::TypeId::of::<XmssSignature>();
    }
}