uni_vault 0.0.3

uni_vault is a high-level Rust crate that provides secure vault functionality through advanced encryption methods. It leverages Trezor Ethereum signatures as a seed to generate SSH private keys and corresponding Rage key pairs, enabling asymmetric encryption and decryption operations. Built atop the signature_to_keys crate, uni_vault abstracts complex cryptographic processes into an accessible API, ensuring secure storage and management of sensitive data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use signature_to_keys::re_export::std_anyhow::*;

pub use core::str::FromStr;

pub use std::iter;

pub use std::collections::HashSet;

pub use zeroize::{
    Zeroize,
    ZeroizeOnDrop,
};