Skip to content

Commit

Permalink
Allow the aes-gcm new version (#177)
Browse files Browse the repository at this point in the history
Co-authored-by: onewayfunc <onewayfunc@gmail.com>
  • Loading branch information
weikengchen and onewayfunc authored Oct 23, 2022
1 parent c04c14a commit 116c1b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ crate-type = ['rlib']

[dependencies]
aes = '0.8.1'
aes-gcm = '=0.10.0-pre'
aes-gcm = '0.10.1'
bincode = '1.3.1'
bulletproofs = "2.0"
digest = '0.10'
Expand Down
2 changes: 1 addition & 1 deletion api/src/anon_xfr/keys.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use aes_gcm::{aead::Aead, NewAead};
use aes_gcm::{aead::Aead, KeyInit};
use digest::{generic_array::GenericArray, Digest};
use noah_algebra::secp256k1::{SECP256K1Scalar, SECP256K1G1, SECP256K1_SCALAR_LEN};
use noah_algebra::{bls12_381::BLSScalar, prelude::*};
Expand Down

0 comments on commit 116c1b9

Please sign in to comment.