ssi 0.16.0

Core library for Verifiable Credentials and Decentralized Identifiers.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use crate::{
    claims::{
        data_integrity::{
            AnyDataIntegrity, AnySuite, CryptographicSuite, DataIntegrity, DataIntegrityDocument,
            ProofConfiguration, ProofOptions,
        },
        vc::syntax::{AnyJsonCredential, AnyJsonPresentation},
        JWTClaims, Jws, JwsBuf, JwsPayload, JwsSlice, JwsStr, JwsString, JwsVec,
        VerificationParameters,
    },
    dids::{DIDResolver, DIDJWK},
    verification_methods::{AnyJwkMethod, AnyMethod, SingleSecretSigner},
    xsd::DateTime,
    DefaultVerificationParameters, JWK,
};

#[cfg(feature = "example")]
pub use crate::dids::example::ExampleDIDResolver;