pub fn caesar_decipher(text: &[u8], shift: u8) -> Vec<u8> ⓘ
Caesar cipher decryption: shifts each byte back by shift (mod 256).
shift
Educational only. Not secure.