Remove some unused imports

This commit is contained in:
Pyrex 2023-04-27 18:38:36 -07:00
parent 15ae77b719
commit ea25f818e5
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
use cryptopals::{prelude::*, bvec, bvec64, english::{Bhattacharyya, self}}; use cryptopals::{prelude::*, bvec64, english::{Bhattacharyya, self}};
fn main() { fn main() {
let s1 = b"this is a test".to_vec(); let s1 = b"this is a test".to_vec();

View File

@ -1,5 +1,5 @@
#![feature(array_chunks)] #![feature(array_chunks)]
use cryptopals::{prelude::*, bvec, bvec64, friendly::aes128}; use cryptopals::{prelude::*, bvec64, friendly::aes128};
fn main() { fn main() {
let key = *b"YELLOW SUBMARINE"; let key = *b"YELLOW SUBMARINE";