Sha256: 9289302ecf783a489bbdc3a03efb3beb155e1ac0d7b546aad758b621af19df28
Contents?: true
Size: 293 Bytes
Versions: 9
Compression:
Stored size: 293 Bytes
Contents
/// "Encipher" with the Atbash cipher. pub fn encode(plain: &str) -> String { unimplemented!("Encoding of {:?} in Atbash cipher.", plain); } /// "Decipher" with the Atbash cipher. pub fn decode(cipher: &str) -> String { unimplemented!("Decoding of {:?} in Atbash cipher.", cipher); }
Version data entries
9 entries across 9 versions & 1 rubygems