Migrate to rsa 0.6 and chacha20poly1305 0.10

This brings us onto Rust Crypto crates with MSRV 1.56 or lower.
This commit is contained in:
Jack Grigg 2022-03-20 23:50:16 +00:00
parent a86fb04454
commit c31d250356
7 changed files with 67 additions and 86 deletions

View file

@ -21,7 +21,7 @@ maintenance = { status = "experimental" }
base64 = "0.13"
# - ChaCha20-Poly1305 from RFC 7539
chacha20poly1305 = { version = "0.9", default-features = false, features = ["alloc"] }
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc"] }
# - HKDF from RFC 5869 with SHA-256
hkdf = "0.12"

View file

@ -1,7 +1,7 @@
//! Primitive cryptographic operations used across various `age` components.
use chacha20poly1305::{
aead::{self, generic_array::typenum::Unsigned, Aead, AeadCore, NewAead},
aead::{self, generic_array::typenum::Unsigned, Aead, AeadCore, KeyInit},
ChaCha20Poly1305,
};
use hkdf::Hkdf;