use cryptopals::prelude::*; const INPUT: &'static str = include_str!("input.txt"); const OUTPUT: &'static str = include_str!("output.txt"); fn main() { dbg!(INPUT); dbg!(OUTPUT); assert_eq!(Vec::::from_hex(INPUT).unwrap().to_b64(), OUTPUT); println!("pass!") }