identity_credential 0.7.0-alpha.7

An implementation of the Verifiable Credentials standard.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Verifiable Credential and Presentation validators.

pub use self::options::FailFast;
pub use self::options::StatusCheck;
pub use self::options::SubjectHolderRelationship;
pub use self::vc_jwt_validation::*;
pub use self::vp_jwt_validation::*;

mod options;
#[cfg(test)]
pub(crate) mod test_utils;
mod vc_jwt_validation;
mod vp_jwt_validation;