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

View File

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