mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
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:
parent
a86fb04454
commit
c31d250356
7 changed files with 67 additions and 86 deletions
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue