[][src]Struct cipher_crypt::porta::Porta

pub struct Porta { /* fields omitted */ }

A Porta cipher.

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

Trait Implementations

impl Cipher for Porta[src]

type Key = String

type Algorithm = Porta

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

Initialize a Porta cipher given a specific key.

Panics

  • The key is empty.
  • The key contains a non-alphabetic symbol.

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

Encrypt a message using a Porta cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Porta};

let v = Porta::new("melon".into());
assert_eq!(v.encrypt("We ride at dawn!").unwrap(), "Dt mpwx pb xtdl!");

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

Decrypt a message using a Porta cipher.

Examples

Basic usage:

use cipher_crypt::{Cipher, Porta};

let v = Porta::new(String::from("melon"));
assert_eq!(v.decrypt("Dt mpwx pb xtdl!").unwrap(), "We ride at dawn!");

Auto Trait Implementations

impl Send for Porta

impl Sync for Porta

impl Unpin for Porta

impl RefUnwindSafe for Porta

impl UnwindSafe for Porta

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]