use cryptopals::{prelude::*, bvec}; fn main() { assert_eq!( bvec!("input1.txt").xor_with(&bvec!("input2.txt")).unwrap(), bvec!("output.txt") ); println!("pass!") }