iota-client 2.0.1-rc.5

The official, general-purpose IOTA client library in Rust for interaction with the IOTA network (Tangle)
Documentation
// Copyright 2022 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Stronghold-as-a-Secret-Manager.

use crate::stronghold::StrongholdAdapter;

/// Secret manager that uses [`iota_stronghold`] as the backing storage.
///
/// This is just an alias to the all-in-one [StrongholdAdapter].
pub type StrongholdSecretManager = StrongholdAdapter;