cryptopals/src/set4.rs

10 lines
264 B
Rust

use crate::{bytes::Bytes, utils};
pub fn challenge25() {
let cipher = utils::read_base64("data/25.txt");
let key = Bytes::from_utf8("YELLOW SUBMARINE");
let _cleartext = crate::ecb::decrypt(&key, &cipher);
println!("[xxxx] Challenge 25: wip");
}