quick syntactical fixes from pr review

merge
This commit is contained in:
Sam Kim 2021-10-14 12:19:22 -04:00 committed by Michael Vines
parent 2359150b9c
commit c51a51d0ad
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
#[cfg(not(target_arch = "bpf"))]
use rand::{rngs::OsRng, Rng};
use aes::cipher::{BlockDecrypt, BlockEncrypt, NewBlockCipher};
use aes::{Aes128, Block};
use aes::{
cipher::{BlockDecrypt, BlockEncrypt, NewBlockCipher},
Aes128, Block,
};
use arrayref::array_ref;