confium-transparency 0.3.0

Append-only Merkle tree transparency log with OTS anchoring and ERS archival
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! OpenTimestamps client and verifier.
//!
//! Anchors hashes to the Bitcoin blockchain via public calendar servers.
//! Verifies proofs against Bitcoin block headers. Used by Confium's
//! transparency log infrastructure.
//!
//! See `TODO.roadmap/36-transparency-and-ots.md` for full spec.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

mod client;
mod proof;

pub use client::*;
pub use proof::*;