[][src]Struct ciphers::Substitution

pub struct Substitution { /* fields omitted */ }

A Simple Substitution cipher implementation.

Methods

impl Substitution[src]

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

Takes the key for the Simple Substitution cipher and returns a corresponding Substitution struct.

Panics

  • If key is not 26 chars in length.
  • If key is not alphabetic.
  • If key contains repeated chars.

Trait Implementations

impl Cipher for Substitution[src]

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

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

Example

use ciphers::{Cipher, Substitution};

let substitution = Substitution::new("PHQGIUMEAYLNOFDXJKRCVSTZWB");

let ctext = substitution.encipher("DEFENDTHEEASTWALLOFTHECASTLE");
assert_eq!(ctext.unwrap(), "GIUIFGCEIIPRCTPNNDUCEIQPRCNI");

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

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

Example

use ciphers::{Cipher, Substitution};

let substitution = Substitution::new("PHQGIUMEAYLNOFDXJKRCVSTZWB");

let ptext = substitution.decipher("GIUIFGCEIIPRCTPNNDUCEIQPRCNI");
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]