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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use traits::{Cipher, U8Array};
pub struct CipherState<C: Cipher> {
key: C::Key,
n: u64,
}
impl<C> CipherState<C>
where C: Cipher
{
pub fn name() -> &'static str {
C::name()
}
pub fn new(key: &[u8], n: u64) -> Self {
CipherState {
key: C::Key::from_slice(key),
n: n,
}
}
pub fn encrypt_ad(&mut self, authtext: &[u8], plaintext: &[u8], out: &mut [u8]) {
C::encrypt(&self.key, self.n, authtext, plaintext, out);
self.n = self.n.checked_add(1).unwrap();
}
pub fn decrypt_ad(&mut self,
authtext: &[u8],
ciphertext: &[u8],
out: &mut [u8])
-> Result<(), ()> {
C::decrypt(&self.key, self.n, authtext, ciphertext, out)?;
self.n = self.n.checked_add(1).unwrap();
Ok(())
}
pub fn encrypt(&mut self, plaintext: &[u8], out: &mut [u8]) {
self.encrypt_ad(&[0u8; 0], plaintext, out)
}
pub fn encrypt_vec(&mut self, plaintext: &[u8]) -> Vec<u8> {
let mut out = vec![0u8; plaintext.len() + 16];
self.encrypt(plaintext, &mut out);
out
}
pub fn decrypt(&mut self, ciphertext: &[u8], out: &mut [u8]) -> Result<(), ()> {
self.decrypt_ad(&[0u8; 0], ciphertext, out)
}
pub fn decrypt_vec(&mut self, ciphertext: &[u8]) -> Result<Vec<u8>, ()> {
let mut out = vec![0u8; ciphertext.len() - 16];
self.decrypt(ciphertext, &mut out)?;
Ok(out)
}
pub fn extract(self) -> (C::Key, u64) {
(self.key, self.n)
}
}