[][src]Struct cipher_crypt::caesar::Caesar

pub struct Caesar { /* fields omitted */ }

A Caesar cipher.

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

Trait Implementations

impl Cipher for Caesar[src]

type Key = usize

type Algorithm = Caesar

fn new(shift: usize) -> Caesar[src]

Initialise a Caesar cipher given a specific shift value.

Panics

  • shift is not in the inclusive range 1 - 26.

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

Encrypt a message using a Caesar cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Caesar};

let c = Caesar::new(3);
assert_eq!("Dwwdfn dw gdzq!", c.encrypt("Attack at dawn!").unwrap());

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

Decrypt a message using a Caesar cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Caesar};

let c = Caesar::new(3);
assert_eq!("Attack at dawn!", c.decrypt("Dwwdfn dw gdzq!").unwrap());

Auto Trait Implementations

impl Send for Caesar

impl Sync for Caesar

impl Unpin for Caesar

impl RefUnwindSafe for Caesar

impl UnwindSafe for Caesar

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]