[][src]Struct ciphers::Caesar

pub struct Caesar { /* fields omitted */ }

A Caesar cipher implementation.

Methods

impl Caesar[src]

pub fn new(key: u8) -> Self[src]

Takes the key for the Caesar cipher and returns a corresponding Caesar struct.

Trait Implementations

impl Cipher for Caesar[src]

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

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

Example

use ciphers::{Cipher, Caesar};

let caesar = Caesar::new(1);

let ctext = caesar.encipher("DEFENDTHEEASTWALLOFTHECASTLE");
assert_eq!(ctext.unwrap(), "EFGFOEUIFFBTUXBMMPGUIFDBTUMF");

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

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

Example

use ciphers::{Cipher, Caesar};

let caesar = Caesar::new(1);

let ptext = caesar.decipher("EFGFOEUIFFBTUXBMMPGUIFDBTUMF");
assert_eq!(ptext.unwrap(), "DEFENDTHEEASTWALLOFTHECASTLE");

Auto Trait Implementations

impl Send for Caesar

impl Unpin for Caesar

impl Sync for Caesar

impl UnwindSafe for Caesar

impl RefUnwindSafe for Caesar

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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]