identity_stronghold/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

pub(crate) mod ed25519;
mod storage;
pub(crate) mod stronghold_key_type;
#[cfg(test)]
mod tests;
pub(crate) mod utils;

pub use storage::*;
pub use stronghold_key_type::*;