Skip to main content

miden_client/keystore/
mod.rs

1use alloc::string::String;
2
3use thiserror::Error;
4
5#[derive(Debug, Error)]
6pub enum KeyStoreError {
7    #[error("storage error: {0}")]
8    StorageError(String),
9    #[error("decoding error: {0}")]
10    DecodingError(String),
11}
12
13#[cfg(feature = "std")]
14mod fs_keystore;
15#[cfg(feature = "std")]
16pub use fs_keystore::FilesystemKeyStore;