oxirs-did 0.4.0

W3C DID and Verifiable Credentials implementation with Signed RDF Graphs for OxiRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Verifiable Credentials module

pub mod credential;
pub mod issuer;
pub mod jwt_vc;
pub mod presentation;
pub mod sd_jwt;
pub mod verifier;

pub use credential::{CredentialSubject, VerifiableCredential};
pub use issuer::CredentialIssuer;
pub use jwt_vc::{decode_jwt_vc, encode_vc_as_jwt, JwtVc, JwtVcHeader, JwtVcPayload};
pub use presentation::VerifiablePresentation;
pub use verifier::CredentialVerifier;