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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
use crate::kind::{CipherCategory, CipherKind};
#[cfg(feature = "v1-aead")]
use super::aeadcipher::AeadCipher;
use super::dummy::DummyCipher;
#[cfg(feature = "v1-stream")]
use super::streamcipher::StreamCipher;
pub fn random_iv_or_salt(iv_or_salt: &mut [u8]) {
use rand::Rng;
if iv_or_salt.is_empty() {
return;
}
let mut rng = rand::thread_rng();
loop {
rng.fill(iv_or_salt);
let (prefix, aligned, suffix) = unsafe { iv_or_salt.align_to::<u128>() };
let is_zeros =
prefix.iter().all(|&x| x == 0) && aligned.iter().all(|&x| x == 0) && suffix.iter().all(|&x| x == 0);
if !is_zeros {
break;
}
}
}
pub fn openssl_bytes_to_key(password: &[u8], key: &mut [u8]) {
use md5::{Digest, Md5};
let key_len = key.len();
let mut last_digest = None;
let mut offset = 0usize;
while offset < key_len {
let mut m = Md5::new();
if let Some(digest) = last_digest {
m.update(&digest);
}
m.update(password);
let digest = m.finalize();
let amt = std::cmp::min(key_len - offset, digest.len());
key[offset..offset + amt].copy_from_slice(&digest[..amt]);
offset += amt;
last_digest = Some(digest);
}
}
#[allow(clippy::large_enum_variant)]
pub enum Cipher {
Dummy(DummyCipher),
#[cfg(feature = "v1-stream")]
Stream(StreamCipher),
#[cfg(feature = "v1-aead")]
Aead(AeadCipher),
}
macro_rules! cipher_method_forward {
(ref $self:expr, $method:ident $(, $param:expr),*) => {
match *$self {
Cipher::Dummy(ref c) => c.$method($($param),*),
#[cfg(feature = "v1-stream")]
Cipher::Stream(ref c) => c.$method($($param),*),
#[cfg(feature = "v1-aead")]
Cipher::Aead(ref c) => c.$method($($param),*),
}
};
(mut $self:expr, $method:ident $(, $param:expr),*) => {
match *$self {
Cipher::Dummy(ref mut c) => c.$method($($param),*),
#[cfg(feature = "v1-stream")]
Cipher::Stream(ref mut c) => c.$method($($param),*),
#[cfg(feature = "v1-aead")]
Cipher::Aead(ref mut c) => c.$method($($param),*),
}
};
}
impl Cipher {
pub fn new(kind: CipherKind, key: &[u8], iv_or_salt: &[u8]) -> Cipher {
let category = kind.category();
match category {
CipherCategory::None => {
let _ = key;
let _ = iv_or_salt;
Cipher::Dummy(DummyCipher::new())
}
#[cfg(feature = "v1-stream")]
CipherCategory::Stream => Cipher::Stream(StreamCipher::new(kind, key, iv_or_salt)),
#[cfg(feature = "v1-aead")]
CipherCategory::Aead => {
use cfg_if::cfg_if;
const SUBKEY_INFO: &'static [u8] = b"ss-subkey";
const MAX_KEY_LEN: usize = 64;
let ikm = key;
let mut okm = [0u8; MAX_KEY_LEN];
cfg_if! {
if #[cfg(feature = "ring")] {
use ring_compat::ring::hkdf::{Salt, HKDF_SHA1_FOR_LEGACY_USE_ONLY, KeyType};
struct CryptoKeyType(usize);
impl KeyType for CryptoKeyType {
#[inline]
fn len(&self) -> usize {
self.0
}
}
let salt = Salt::new(HKDF_SHA1_FOR_LEGACY_USE_ONLY, iv_or_salt);
let prk = salt.extract(ikm);
let rokm = prk
.expand(&[SUBKEY_INFO], CryptoKeyType(ikm.len()))
.expect("HKDF-SHA1-EXPAND");
rokm.fill(&mut okm[..ikm.len()]).expect("HKDF-SHA1-FILL");
} else {
use hkdf::Hkdf;
use sha1::Sha1;
let hk = Hkdf::<Sha1>::new(Some(iv_or_salt), ikm);
hk.expand(SUBKEY_INFO, &mut okm).expect("HKDF-SHA1");
}
}
let subkey = &okm[..ikm.len()];
Cipher::Aead(AeadCipher::new(kind, subkey))
}
#[allow(unreachable_patterns)]
_ => unimplemented!("Category {:?} is not v1 protocol", category),
}
}
pub fn category(&self) -> CipherCategory {
cipher_method_forward!(ref self, category)
}
pub fn kind(&self) -> CipherKind {
cipher_method_forward!(ref self, kind)
}
pub fn tag_len(&self) -> usize {
cipher_method_forward!(ref self, tag_len)
}
pub fn encrypt_packet(&mut self, pkt: &mut [u8]) {
cipher_method_forward!(mut self, encrypt, pkt)
}
#[must_use]
pub fn decrypt_packet(&mut self, pkt: &mut [u8]) -> bool {
cipher_method_forward!(mut self, decrypt, pkt)
}
}
#[test]
fn test_cipher_new_none() {
let key = [2u8; 16];
let salt = [1u8; 16];
let kind = CipherKind::NONE;
let cipher = Cipher::new(kind, &key, &salt);
assert_eq!(cipher.tag_len(), 0);
}
#[cfg(feature = "v1-aead")]
#[test]
fn test_cipher_new_aead() {
let key = [2u8; 16];
let salt = [1u8; 16];
let kind = CipherKind::AES_128_GCM;
let cipher = Cipher::new(kind, &key, &salt);
assert_eq!(cipher.tag_len(), 16);
}
#[cfg(feature = "v1-stream")]
#[test]
fn test_cipher_new_stream() {
let key = [2u8; 32];
let iv = [1u8; 12];
let kind = CipherKind::CHACHA20;
let cipher = Cipher::new(kind, &key, &iv);
assert_eq!(cipher.tag_len(), 0);
}
#[test]
fn test_send() {
fn test<C: Send>() {}
test::<Cipher>();
}
#[test]
fn test_sync() {
fn test<C: Sync>() {}
test::<Cipher>();
}