aranya-crypto 0.14.1

The Aranya Cryptography Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A file system backed [`KeyStore`][crate::KeyStore].

#![cfg(feature = "fs-keystore")]
#![cfg_attr(docsrs, doc(cfg(feature = "fs-keystore")))]

mod error;
mod store;
mod tests;

pub use error::*;
pub use store::*;