[][src]Struct ciphers::Atbash

pub struct Atbash;

An Atbash cipher implementation.

Methods

impl Atbash[src]

pub fn new() -> Self[src]

Returns a new Atbash struct.

Trait Implementations

impl Cipher for Atbash[src]

fn encipher(&self, ptext: &str) -> CipherResult[src]

Enciphers the given plaintext (a str reference) using the Atbash cipher and returns the ciphertext as a CipherResult.

Example

use ciphers::{Cipher, Atbash};

let atbash = Atbash::new();

let ctext = atbash.encipher("ATTACKATDAWN");
assert_eq!(ctext.unwrap(), "ZGGZXPZGWZDM");

fn decipher(&self, ctext: &str) -> CipherResult[src]

Deciphers the given ciphertext (a str reference) using the Atbash cipher and returns the plaintext as a CipherResult.

Note that the Atbash cipher is reciprocal.

Example

use ciphers::{Cipher, Atbash};

let atbash = Atbash::new();

let ptext = atbash.decipher("ZGGZXPZGWZDM");
assert_eq!(ptext.unwrap(), "ATTACKATDAWN");

Auto Trait Implementations

impl Unpin for Atbash

impl Sync for Atbash

impl Send for Atbash

impl UnwindSafe for Atbash

impl RefUnwindSafe for Atbash

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]