cesr-rs 0.6.0

CESR + KERI primitives for Rust as a single feature-gated, no_std-capable crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Builder for constructing and parsing `Indexer` primitives.
pub mod builder;
/// Indexed signature codes, mode, and lookup helpers.
pub mod code;
/// Parse and validation error types for indexed signature streams.
pub mod error;
/// `Indexer` type for indexed CESR signatures.
#[allow(
    clippy::module_inception,
    reason = "Indexer module contains the Indexer type"
)]
pub mod indexer;
/// Sizing table (`Xizage`) for indexed signature codes.
pub mod xizage;

pub use builder::IndexerBuilder;
pub use indexer::Indexer;