cardanowall-cli 0.2.0

The cardanowall CLI: a standalone Label 309 Proof-of-Existence verifier and toolkit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Inbox subsystem helpers: identity resolution, envelope projection, and the
//! plaintext-hash recompute. The command handlers live in
//! [`crate::commands::inbox`].

pub mod envelope;
pub mod identity;
pub mod recompute_hashes;

pub use envelope::envelope_from_item;
pub use identity::{resolve_identity, IdentitySource, ResolvedIdentity};
pub use recompute_hashes::{recompute_item_hashes, RecomputeResult};