From f4b8c518d1140886fcc2cdc544fa1f510a4b5cb6 Mon Sep 17 00:00:00 2001 From: Radu Marias Date: Sat, 4 May 2024 10:58:27 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f2275fb9..0fea91ab 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Encryption key is also encrypted with another key derived from the password. Thi # Stack - it's fully async built upon [tokio](https://crates.io/crates/tokio) and [fuse3](https://crates.io/crates/fuse3) -- [ring](https://crates.io/crates/ring) for encryption and [argon2](https://crates.io/crates/argon2) for key derivation function (creating encryption key from password) +- [ring](https://crates.io/crates/ring) for encryption and [argon2](https://crates.io/crates/argon2) for key derivation function (creating key used to encrypt master encryption key from password) - [secrecy](https://crates.io/crates/secrecy) for keeping pass and encryption keys safe in memory and zeroing them when not used. It keeps encryption keys in memory only while being used and when not active it will release and zeroing them from memory - password can be saved in OS keyring using [keyring](https://crates.io/crates/keyring) - [tracing](https://crates.io/crates/tracing) for logs