Skip to content

Commit

Permalink
Bump aes-gcm and chacha20poly1305
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve authored and mcginty committed Nov 11, 2023
1 parent 3084c3f commit 5b307fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ rand_core = { version = "0.6", features = ["std", "getrandom"] }
subtle = "2.4"

# default crypto provider
aes-gcm = { version = "0.9", optional = true }
chacha20poly1305 = { version = "0.9", optional = true }
aes-gcm = { version = "0.10", optional = true }
chacha20poly1305 = { version = "0.10", optional = true }
blake2 = { version = "0.10", optional = true }
sha2 = { version = "0.10", optional = true }
curve25519-dalek = { version = "4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions src/resolvers/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use blake2::{Blake2b, Blake2b512, Blake2s, Blake2s256};
#[cfg(feature = "xchachapoly")]
use chacha20poly1305::XChaCha20Poly1305;
use chacha20poly1305::{
aead::{AeadInPlace, NewAead},
ChaCha20Poly1305,
aead::AeadInPlace,
KeyInit, ChaCha20Poly1305,
};
use curve25519_dalek::montgomery::MontgomeryPoint;
#[cfg(feature = "pqclean_kyber1024")]
Expand Down

0 comments on commit 5b307fe

Please sign in to comment.