[][src]Struct ciphers::Affine

pub struct Affine { /* fields omitted */ }

An Affine cipher implementation.

Methods

impl Affine[src]

pub fn new(a: i32, b: i32) -> Self[src]

Takes the two keys for the Affine cipher and returns a corresponding Affine struct.

Panics

  • If a is outside the range [1, 26).
  • If b is outside the range [0, 26).
  • If a is not relatively prime to 26.

Trait Implementations

impl Cipher for Affine[src]

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

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

Example

use ciphers::{Cipher, Affine};

let affine = Affine::new(7, 11);

let ctext = affine.encipher("DEFENDTHEEASTWALLOFTHECASTLE");
assert_eq!(ctext.unwrap(), "GNUNYGOINNLHOJLKKFUOINZLHOKN");

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

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

Example

use ciphers::{Cipher, Affine};

let affine = Affine::new(7, 11);

let ptext = affine.decipher("GNUNYGOINNLHOJLKKFUOINZLHOKN");
assert_eq!(ptext.unwrap(), "DEFENDTHEEASTWALLOFTHECASTLE");

Auto Trait Implementations

impl Send for Affine

impl Unpin for Affine

impl Sync for Affine

impl UnwindSafe for Affine

impl RefUnwindSafe for Affine

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]