use crate::chacha::Key;
use crate::{ChaChaCore, R20};
use cipher::{
IvSizeUser, KeyIvInit, KeySizeUser, StreamCipherCoreWrapper,
array::Array,
consts::{U8, U32},
};
pub type LegacyNonce = Array<u8, U8>;
use crate::variants::Legacy;
pub type ChaCha20Legacy = StreamCipherCoreWrapper<ChaCha20LegacyCore>;
pub type ChaCha20LegacyCore = ChaChaCore<R20, Legacy>;
impl KeySizeUser for ChaCha20LegacyCore {
type KeySize = U32;
}
impl IvSizeUser for ChaCha20LegacyCore {
type IvSize = U8;
}
impl KeyIvInit for ChaCha20LegacyCore {
#[inline(always)]
fn new(key: &Key, iv: &LegacyNonce) -> Self {
ChaChaCore::<R20, Legacy>::new_internal(key.as_ref(), iv.as_ref())
}
}