Update sdk/src/encryption/aes.rs

Co-authored-by: Michael Vines <mvines@gmail.com>
This commit is contained in:
samkim-crypto 2021-10-15 07:44:56 -03:00 committed by Michael Vines
parent 173d88d514
commit b0e492bc06
1 changed files with 7 additions and 7 deletions

View File

@ -1,15 +1,15 @@
#[cfg(not(target_arch = "bpf"))]
use rand::{rngs::OsRng, Rng};
use aes::{
cipher::{BlockDecrypt, BlockEncrypt, NewBlockCipher},
Aes128, Block,
use {
aes::{
cipher::{BlockDecrypt, BlockEncrypt, NewBlockCipher},
Aes128, Block,
},
arrayref::array_ref,
zeroize::Zeroize,
};
use arrayref::array_ref;
use zeroize::Zeroize;
pub struct AES;
impl AES {
#[cfg(not(target_arch = "bpf"))]