From c45aea8fe7be2461ee1e51a5f7eb637cbb57bc9e Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Tue, 14 Sep 2021 13:09:57 -0500 Subject: [PATCH] Update readme to reflect current auth/encrypt logic --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ff3bc81..edfc9d3 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,10 @@ talk to the server. - Asynchronous in nature, powered by [`tokio`](https://tokio.rs/) - Data is serialized to send across the wire via [`CBOR`](https://cbor.io/) -- Encryption & authentication are handled via [`orion`](https://crates.io/crates/orion) - - [XChaCha20Poly1305](https://cryptopp.com/wiki/XChaCha20Poly1305) for an authenticated encryption scheme - - [BLAKE2b-256](https://www.blake2.net/) in keyed mode for a second authentication - - [Elliptic Curve Diffie-Hellman](https://en.wikipedia.org/wiki/Elliptic-curve_Diffie%E2%80%93Hellman) (ECDH) for key exchange +- Encryption & authentication are handled via + [XChaCha20Poly1305](https://tools.ietf.org/html/rfc8439) for an authenticated + encryption scheme via + [RustCrypto/ChaCha20Poly1305](https://github.com/RustCrypto/AEADs/tree/master/chacha20poly1305) ## Installation