Struct FourSquare

Source
pub struct FourSquare { /* private fields */ }
Expand description

A Four-Square cipher implementation.

Implementations§

Source§

impl FourSquare

Source

pub fn new(key1: &str, key2: &str, alphabet: &str, pad: char) -> Self

Takes the two keys for the Four-Square cipher and returns a corresponding FourSquare struct.

§Panics
  • If alphabet is not 25 chars in length.
  • If alphabet is not valid ascii.
  • If alphabet contains repeated chars.
  • If key1 is not 25 chars in length.
  • If key1 contains repeated chars.
  • If any of the chars in key1 are not contained in alphabet.
  • If key2 is not 25 chars in length.
  • If key2 contains repeated chars.
  • If any of the chars in key2 are not contained in alphabet.
  • If pad is not contained in alphabet.

Trait Implementations§

Source§

impl Cipher for FourSquare

Source§

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

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

§Example
use ciphers::{Cipher, FourSquare};

let four_square = FourSquare::new(
    "ZGPTFOIHMUWDRCNYKEQAXVSBL",
    "MFNBDCRHSAXYOGVITUEWLQZKP",
    "ABCDEFGHIKLMNOPQRSTUVWXYZ",
    'X',
);

let ctext = four_square.encipher("ATTACKATDAWN");
assert_eq!(ctext.unwrap(), "TIYBFHTIZBSY");
Source§

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

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

§Example
use ciphers::{Cipher, FourSquare};

let four_square = FourSquare::new(
    "ZGPTFOIHMUWDRCNYKEQAXVSBL",
    "MFNBDCRHSAXYOGVITUEWLQZKP",
    "ABCDEFGHIKLMNOPQRSTUVWXYZ",
    'X',
);

let ptext = four_square.decipher("TIYBFHTIZBSY");
assert_eq!(ptext.unwrap(), "ATTACKATDAWN");

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.