identity_storage/key_id_storage/
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
25
26
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! A Key ID Storage is used to store the identifiers of keys
//! that were generated in a Key Storage.
//!
//! This module provides the [`KeyIdStorage`] trait that
//! stores the mapping from a method, identified by a [`MethodDigest`],
//! to its [`KeyId`](crate::key_storage::KeyId).

#[allow(clippy::module_inception)]
mod key_id_storage;
mod key_id_storage_error;
mod method_digest;

#[cfg(feature = "memstore")]
mod memstore;

#[cfg(test)]
mod tests;

pub use key_id_storage::*;
pub use key_id_storage_error::*;
#[cfg(feature = "memstore")]
pub use memstore::*;
pub use method_digest::*;