[][src]Struct ciphers::ADFGX

pub struct ADFGX { /* fields omitted */ }

An ADFGX cipher implementation.

Methods

impl ADFGX[src]

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

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

Panics

  • If key is not 25 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 ADFGX[src]

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

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

Example

use ciphers::{Cipher, ADFGX};

let adfgx = ADFGX::new("PHQGMEAYNOFDXKRCVSZWBUTIL", "GERMAN");

let ctext = adfgx.encipher("DEFENDTHEEASTWALLOFTHECASTLE");
assert_eq!(ctext.unwrap(), "FFDGDDADXDAFAFXAAFAFDXDXXFDGDAGDDXXFAFADAFDXDDXDDADGXXGX");

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

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

Example

use ciphers::{Cipher, ADFGX};

let adfgx = ADFGX::new("PHQGMEAYNOFDXKRCVSZWBUTIL", "GERMAN");

let ptext = adfgx.decipher("FFDGDDADXDAFAFXAAFAFDXDXXFDGDAGDDXXFAFADAFDXDDXDDADGXXGX");
assert_eq!(ptext.unwrap(), "DEFENDTHEEASTWALLOFTHECASTLE");

Auto Trait Implementations

impl Send for ADFGX

impl Unpin for ADFGX

impl Sync for ADFGX

impl UnwindSafe for ADFGX

impl RefUnwindSafe for ADFGX

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]