[][src]Struct ciphers::ADFGVX

pub struct ADFGVX { /* fields omitted */ }

An ADFGVX cipher implementation.

Methods

impl ADFGVX[src]

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

Takes the key and keyword for the ADFGVX cipher and returns a corresponding ADFGVX struct.

Panics

  • If key is not 36 chars in length.
  • If key contains repeated chars.
  • If key is not valid ascii.
  • If keyword is not valid ascii.

Trait Implementations

impl Cipher for ADFGVX[src]

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

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

Example

use ciphers::{Cipher, ADFGVX};

let adfgvx = ADFGVX::new("PH0QG64MEA1YL2NOFDXKR3CVS5ZW7BJ9UTI8", "GERMAN");

let ctext = adfgvx.encipher("DEFENDTHEEASTWALLOFTHECASTLE");
assert_eq!(ctext.unwrap(), "FFDVDFADFXFGFGAVFAFFDXDXFFDVDFFDGGAGVGVXFAGGDGADFADVFXGX");

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

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

Example

use ciphers::{Cipher, ADFGVX};

let adfgvx = ADFGVX::new("PH0QG64MEA1YL2NOFDXKR3CVS5ZW7BJ9UTI8", "GERMAN");

let ptext = adfgvx.decipher("FFDVDFADFXFGFGAVFAFFDXDXFFDVDFFDGGAGVGVXFAGGDGADFADVFXGX");
assert_eq!(ptext.unwrap(), "DEFENDTHEEASTWALLOFTHECASTLE");

Auto Trait Implementations

impl Send for ADFGVX

impl Unpin for ADFGVX

impl Sync for ADFGVX

impl UnwindSafe for ADFGVX

impl RefUnwindSafe for ADFGVX

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]