cesr-rs 0.2.0

CESR + KERI primitives for Rust as a single feature-gated, no_std-capable crate
Documentation
mod cesr_code;
/// Typed CESR digest algorithm codes.
pub mod digest;
/// Typed CESR labeler (tag/label) codes.
pub mod labeler;
/// The untyped `MatterCode` enum covering all 50+ CESR codes.
pub mod matter_code;
/// Typed CESR noncer (nonce/randomness) codes.
pub mod noncer;
/// Typed CESR number codes (Short, Long, Tall, Big, Large, Great, Vast).
pub mod number;
pub(crate) mod sealed;
/// Typed CESR seed (private key) codes.
pub mod seed;
/// Typed CESR signature codes.
pub mod signature;
/// Typed CESR texter (variable-length bytes) codes.
pub mod texter;
/// Typed CESR verification key codes (transferable and non-transferable).
pub mod verkey;
/// Typed CESR verser (version/protocol) codes.
pub mod verser;

pub use cesr_code::CesrCode;
pub use digest::DigestCode;
pub use labeler::LabelerCode;
pub use matter_code::MatterCode;
pub use noncer::NoncerCode;
pub use number::NumberCode;
pub use seed::SeedCode;
pub use signature::SignatureCode;
pub use texter::TexterCode;
pub use verkey::VerKeyCode;
pub use verser::VerserCode;