[][src]Struct ciphers::RailFence

pub struct RailFence { /* fields omitted */ }

A Rail-fence cipher implementation.

Methods

impl RailFence[src]

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

Takes the key for the Rail-fence cipher and returns a corresponding RailFence struct.

Panics

  • If key is less than or equal to 0.

Trait Implementations

impl Cipher for RailFence[src]

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

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

Example

use ciphers::{Cipher, RailFence};

let rail_fence = RailFence::new(4);

let ctext = rail_fence.encipher("DEFENDTHEEASTWALLOFTHECASTLE");
assert_eq!(ctext.unwrap(), "DTTFSEDHSWOTATFNEAALHCLEELEE");

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

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

Example

use ciphers::{Cipher, RailFence};

let rail_fence = RailFence::new(4);

let ptext = rail_fence.decipher("DTTFSEDHSWOTATFNEAALHCLEELEE");
assert_eq!(ptext.unwrap(), "DEFENDTHEEASTWALLOFTHECASTLE");

Auto Trait Implementations

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]