1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use crate::cipher::{ChaCha20, Key};
use stream_cipher::{
consts::{U32, U8},
LoopError, NewStreamCipher, OverflowError, SeekNum, SyncStreamCipher, SyncStreamCipherSeek,
};
#[cfg_attr(docsrs, doc(cfg(feature = "legacy")))]
pub type LegacyNonce = stream_cipher::Nonce<ChaCha20Legacy>;
#[cfg_attr(docsrs, doc(cfg(feature = "legacy")))]
pub struct ChaCha20Legacy(ChaCha20);
impl NewStreamCipher for ChaCha20Legacy {
type KeySize = U32;
type NonceSize = U8;
fn new(key: &Key, nonce: &LegacyNonce) -> Self {
let mut exp_iv = [0u8; 12];
exp_iv[4..].copy_from_slice(nonce);
ChaCha20Legacy(ChaCha20::new(key, &exp_iv.into()))
}
}
impl SyncStreamCipher for ChaCha20Legacy {
fn try_apply_keystream(&mut self, data: &mut [u8]) -> Result<(), LoopError> {
self.0.try_apply_keystream(data)
}
}
impl SyncStreamCipherSeek for ChaCha20Legacy {
fn try_current_pos<T: SeekNum>(&self) -> Result<T, OverflowError> {
self.0.try_current_pos()
}
fn try_seek<T: SeekNum>(&mut self, pos: T) -> Result<(), LoopError> {
self.0.try_seek(pos)
}
}