#![no_std]
pub extern crate generic_array;
#[cfg(feature = "std")]
extern crate std;
use generic_array::{GenericArray, ArrayLength};
use core::fmt;
#[cfg(feature = "dev")]
pub mod dev;
#[derive(Copy, Clone, Debug)]
pub struct LoopError;
impl fmt::Display for LoopError {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
f.write_str("Loop Error")
}
}
#[cfg(feature = "std")]
impl std::error::Error for LoopError {
fn description(&self) -> &str {
"stream cipher loop detected"
}
}
pub trait StreamCipherCore {
#[inline]
fn apply_keystream(&mut self, data: &mut [u8]) {
self.try_apply_keystream(data)
.expect("stream cipher loop detected")
}
fn try_apply_keystream(&mut self, data: &mut [u8]) -> Result<(), LoopError>;
}
pub trait StreamCipherSeek {
fn current_pos(&self) -> u64;
fn seek(&mut self, pos: u64);
}
pub trait NewFixStreamCipher {
type KeySize: ArrayLength<u8>;
type NonceSize: ArrayLength<u8>;
fn new(
key: &GenericArray<u8, Self::KeySize>,
nonce: &GenericArray<u8, Self::NonceSize>,
) -> Self;
}