Skip to main content

caesar_decipher

Function caesar_decipher 

Source
pub fn caesar_decipher(text: &[u8], shift: u8) -> Vec<u8> 
Expand description

Caesar cipher decryption: shifts each byte back by shift (mod 256).

§WARNING

Educational only. Not secure.