[][src]Struct cipher_crypt::autokey::Autokey

pub struct Autokey { /* fields omitted */ }

An Autokey cipher.

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

Trait Implementations

impl Cipher for Autokey[src]

type Key = String

type Algorithm = Autokey

fn new(key: String) -> Autokey[src]

Initialise an Autokey cipher given a specific key.

Panics

  • The key contains non-alphabetic symbols.
  • The key is empty.

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

Encrypt a message using an Autokey cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Autokey};

let a = Autokey::new(String::from("fort"));
assert_eq!("Fhktcd 🗡 mhg otzx aade", a.encrypt("Attack 🗡 the east wall").unwrap());

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

Decrypt a message using an Autokey cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Autokey};

let a = Autokey::new(String::from("fort"));;
assert_eq!("Attack 🗡 the east wall", a.decrypt("Fhktcd 🗡 mhg otzx aade").unwrap());

Auto Trait Implementations

impl Send for Autokey

impl Sync for Autokey

impl Unpin for Autokey

impl RefUnwindSafe for Autokey

impl UnwindSafe for Autokey

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]