continuity-receipt 0.3.2

Independent Rust verifier for continuity-receipt/0.1-0.3 bundles (the Python implementation remains the reference)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Independent Rust verifier for Continuity Receipt bundles (0.1 + 0.2).
//!
//! This is a second implementation of `continuity_receipt/verify.py`; the
//! Python implementation in this repository remains the reference. Verdicts
//! follow the CTQ-aligned semantics of spec section 7:
//! `TRUSTED` | `PROVISIONAL` | `INSUFFICIENT_EVIDENCE` | `UNTRUSTED`.

pub mod anchor;
pub mod canon;
pub mod didkey;
pub mod disclose;
pub mod verify;

pub use verify::{verify_bundle, VerifyResult};