pub fn xor(a: &str, b: &str) -> Result<String>
XOR two hex strings of equal length
use dodecet_encoder::hex; let result = hex::xor("FFF", "123").unwrap(); assert_eq!(result, "EDC");