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

Version Path
trackler-2.2.1.180 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.179 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.178 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.177 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.176 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.175 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.174 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.173 tracks/rust/exercises/atbash-cipher/src/lib.rs
trackler-2.2.1.172 tracks/rust/exercises/atbash-cipher/src/lib.rs