defendor 0.0.6

A secure file encryption tool with AES-GCM and Argon2 for password hashing.
Documentation
1
2
3
4
5
pub trait Store: Send + Sync {
    fn get(&self, key: &str) -> impl Future<Output = Option<String>>;
    fn set(&mut self, key: &str, value: &str) -> impl Future<Output = ()>;
    fn delete(&mut self, key: &str) -> impl Future<Output = ()>;
}