Skip to main content

zlicenser_protocol/
lib.rs

1pub mod crypto;
2pub mod error;
3pub mod message;
4pub mod wire;
5
6pub mod evidence;
7pub mod fingerprint;
8pub mod tsa;
9
10pub use error::Error;
11pub type Result<T> = std::result::Result<T, Error>;