cryptopals/examples/set1_7/main.rs
2023-04-27 20:19:27 -07:00

13 lines
415 B
Rust

#![feature(array_chunks)]
use cryptopals::{prelude::*, bvec64, friendly::{aes128, ecb_decrypt, ecb_encrypt}};
fn main() {
let key = *b"YELLOW SUBMARINE";
let input = bvec64!("input.txt");
let output = ecb_decrypt(&input, |block| aes128::decrypt(key, block));
dbg!(output.to_text().unwrap());
assert_eq!(input, ecb_encrypt(&output, |block| aes128::encrypt(key, block)));
println!("pass")
}