identity_credential 1.1.1

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

//! Contains the implementations for all the credential revocation methods that can be used with IOTA's Identity
//! framework.

mod error;
mod revocation_bitmap_2022;
#[cfg(feature = "status-list-2021")]
pub mod status_list_2021;

pub use self::error::RevocationError;
pub use self::error::RevocationResult;
pub use revocation_bitmap_2022::*;