Skip to content

Commit

Permalink
Set the AES-GCM version to exactly 0.10.0-pre (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
findora-crypto authored Jul 3, 2022
1 parent 83aa4aa commit 80495de
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 @@ -16,7 +16,7 @@ crate-type = ['rlib']

[dependencies]
aes = '0.8.1'
aes-gcm = '0.10.0-pre'
aes-gcm = '=0.10.0-pre'
bincode = '1.3.1'
bulletproofs = "2.0"
digest = '0.10'
Expand Down
2 changes: 1 addition & 1 deletion api/src/anon_xfr/structs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::anon_xfr::{
keys::{AXfrKeyPair, AXfrPubKey, AXfrViewKey},
};
use crate::xfr::structs::AssetType;
use aes_gcm::{aead::Aead, KeyInit};
use aes_gcm::{aead::Aead, NewAead};
use digest::{generic_array::GenericArray, Digest};
use serde::Serialize;
use wasm_bindgen::prelude::*;
Expand Down

0 comments on commit 80495de

Please sign in to comment.