identity_verification/verification_method/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! The `verification` module contains code for verifying the correctness of core DID-related types.
//!
//! This crate DOES NOT verify IOTA-specific invariants, those are exposed by the
//! `identity_iota_core_legacy` crate.

mod builder;
mod material;
mod method;
mod method_ref;
mod method_relationship;
mod method_scope;
mod method_type;

pub use self::builder::MethodBuilder;
pub use self::material::CustomMethodData;
pub use self::material::MethodData;
pub use self::method::VerificationMethod;
pub use self::method_ref::MethodRef;
pub use self::method_relationship::MethodRelationship;
pub use self::method_scope::MethodScope;
pub use self::method_type::MethodType;