[][src]Trait kaiser::ciphers::Decrypt

pub trait Decrypt {
    type Error: Error;
    fn decrypt(&self, buf: Buffer) -> Result<Buffer, Self::Error>;
}

Associated Types

type Error: Error

Loading content...

Required methods

fn decrypt(&self, buf: Buffer) -> Result<Buffer, Self::Error>

Loading content...

Implementors

impl Decrypt for Affine[src]

type Error = SimpleError

impl Decrypt for Caesar[src]

type Error = SimpleError

impl Decrypt for Transposition[src]

type Error = SimpleError

impl Decrypt for Vigenere[src]

type Error = SimpleError

Loading content...