ssi_data_integrity/lib.rs
1pub use ssi_core::{JsonPointer, JsonPointerBuf};
2pub use ssi_data_integrity_core::*;
3pub use ssi_data_integrity_suites as suites;
4
5mod any;
6pub use any::*;
7
8#[cfg(test)]
9mod core_tests;
10
11/// Any Data-Integrity proof known by this library.
12pub type AnyProof = Proof<AnySuite>;
13
14/// List of any Data-Integrity proof known by this library.
15pub type AnyProofs = Proofs<AnySuite>;
16
17/// Data-Integrity-secured claims with any cryptographic suite.
18pub type AnyDataIntegrity<T = DataIntegrityDocument> = DataIntegrity<T, AnySuite>;