bsv-sdk 0.2.81

Pure Rust implementation of the BSV Blockchain SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Certificate hierarchy for auth module.
//!
//! Provides AuthCertificate (sign/verify/encrypt/decrypt), VerifiableCertificate
//! (selective field revelation), MasterCertificate (master keyring management),
//! and CompoundMerklePathCertificate (certificate + merkle proof).

pub mod certificate;
pub mod compound;
pub mod master;
pub mod verifiable;

pub use certificate::AuthCertificate;
pub use compound::CompoundMerklePathCertificate;
pub use master::MasterCertificate;
pub use verifiable::VerifiableCertificate;