[][src]Struct cipher_crypt::affine::Affine

pub struct Affine { /* fields omitted */ }

An Affine cipher.

This struct is created by the new() method. See its documentation for more.

Trait Implementations

impl Cipher for Affine[src]

type Key = (usize, usize)

type Algorithm = Affine

fn new(key: (usize, usize)) -> Affine[src]

Initialise an Affine cipher given the key (a, b).

Panics

  • a or b are not in the inclusive range 1 - 26.
  • a has a factor in common with 26.

fn encrypt(&self, message: &str) -> Result<String, &'static str>[src]

Encrypt a message using an Affine cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Affine};

let a = Affine::new((3, 7));
assert_eq!("Hmmhnl hm qhvu!", a.encrypt("Attack at dawn!").unwrap());

fn decrypt(&self, ciphertext: &str) -> Result<String, &'static str>[src]

Decrypt a message using an Affine cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Affine};

let a = Affine::new((3, 7));
assert_eq!("Attack at dawn!", a.decrypt("Hmmhnl hm qhvu!").unwrap());

Auto Trait Implementations

impl Send for Affine

impl Unpin for Affine

impl Sync for Affine

impl RefUnwindSafe for Affine

impl UnwindSafe for Affine

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]