pub mod general;
pub mod riv_general;
pub mod ascon;
use std::{ io, fmt };
use std::error::Error;
pub use self::general::General;
pub use self::riv_general::RivGeneral;
pub use self::ascon::Ascon;
#[derive(Debug)]
pub enum DecryptFail {
LengthError,
AuthenticationFail,
Other(io::Error)
}
pub trait AeadCipher {
fn new(key: &[u8]) -> Self where Self: Sized;
const KEY_LENGTH: usize;
const TAG_LENGTH: usize;
const NONCE_LENGTH: usize;
fn with_aad(&mut self, aad: &[u8]) -> &mut Self;
fn encrypt(&self, nonce: &[u8], data: &[u8]) -> Vec<u8>;
fn decrypt(&self, nonce: &[u8], data: &[u8]) -> Result<Vec<u8>, DecryptFail>;
}
impl fmt::Display for DecryptFail {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Decryption fail: {}", self.description())
}
}
impl Error for DecryptFail {
fn description(&self) -> &str {
match *self {
DecryptFail::LengthError => "Ciphertext length error.",
DecryptFail::AuthenticationFail => "Tag authentication fail.",
DecryptFail::Other(ref err) => err.description()
}
}
fn cause(&self) -> Option<&Error> {
match *self {
DecryptFail::Other(ref err) => Some(err),
_ => None
}
}
}
impl From<io::Error> for DecryptFail {
fn from(err: io::Error) -> DecryptFail {
DecryptFail::Other(err)
}
}