aegisnet_hsm/lib.rs
1pub mod hsm;
2pub mod types;
3
4pub use hsm::atomic_signer::HsmAtomicSigner;
5pub use types::signature::XmssSignature;
6
7#[cfg(test)]
8mod tests {
9 use super::*;
10
11 #[test]
12 fn test_module_structure() {
13 let _ = std::any::TypeId::of::<HsmAtomicSigner>();
14 let _ = std::any::TypeId::of::<XmssSignature>();
15 }
16}