pub trait Xor { // Required method fn xor(&mut self, key_bytes: &Vec<u8>) -> Vec<u8> ⓘ; }
Creates xor encrypted copy of data using the provided key.