-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathmodes.rs
More file actions
465 lines (368 loc) · 12.7 KB
/
modes.rs
File metadata and controls
465 lines (368 loc) · 12.7 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
use super::{Block, DeoxysBcType, DeoxysKey, DeoxysMode, Tag, Tweak};
use aead::{
array::Array,
consts::{U8, U15, U16},
inout::InOutBuf,
};
use core::marker::PhantomData;
use subtle::ConstantTimeEq;
const TWEAK_AD: u8 = 0x20;
const TWEAK_AD_LAST: u8 = 0x60;
const TWEAK_M: u8 = 0x00;
const TWEAK_TAG: u8 = 0x10;
const TWEAK_M_LAST: u8 = 0x40;
const TWEAK_CHKSUM: u8 = 0x50;
type Checksum = Array<u8, U16>;
/// Implementation of the Deoxys-I mode of operation.
pub struct DeoxysI<B> {
_ptr: PhantomData<B>,
}
/// Implementation of the Deoxys-II mode of operation.
#[allow(clippy::upper_case_acronyms)]
pub struct DeoxysII<B> {
_ptr: PhantomData<B>,
}
pub trait DeoxysModeInternal<B>
where
B: DeoxysBcType,
{
fn compute_ad_tag(
associated_data: &[u8],
tweak: &mut Tweak,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
tag: &mut Tag,
) {
if !associated_data.is_empty() {
tweak[0] = TWEAK_AD;
for (index, ad) in associated_data.chunks(16).enumerate() {
// Copy block number
tweak[8..].copy_from_slice(&(index as u64).to_be_bytes());
if ad.len() == 16 {
let mut block = Block::default();
block.copy_from_slice(ad);
B::encrypt_inout((&mut block).into(), tweak, subkeys);
for (t, b) in tag.iter_mut().zip(block.iter()) {
*t ^= b;
}
} else {
// Last block
tweak[0] = TWEAK_AD_LAST;
let mut block = Block::default();
block[0..ad.len()].copy_from_slice(ad);
block[ad.len()] = 0x80;
B::encrypt_inout((&mut block).into(), tweak, subkeys);
for (t, b) in tag.iter_mut().zip(block.iter()) {
*t ^= b;
}
}
}
}
}
}
impl<B> DeoxysModeInternal<B> for DeoxysI<B> where B: DeoxysBcType {}
impl<B> DeoxysModeInternal<B> for DeoxysII<B> where B: DeoxysBcType {}
impl<B> DeoxysMode<B> for DeoxysI<B>
where
B: DeoxysBcType,
{
type NonceSize = U8;
fn encrypt_inout(
nonce: &Array<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: InOutBuf<'_, '_, u8>,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
) -> Tag {
let mut tag = Tag::default();
let mut checksum = Checksum::default();
let mut tweak = Tweak::default();
// Associated Data
<Self as DeoxysModeInternal<B>>::compute_ad_tag(
associated_data,
&mut tweak,
subkeys,
&mut tag,
);
// Add the nonce to the tweak
tweak[0] = nonce[0] >> 4;
for i in 1..nonce.len() {
tweak[i] = (nonce[i - 1] << 4) | (nonce[i] >> 4);
}
tweak[8] = nonce[7] << 4;
// Message authentication and encryption
tweak[0] = (tweak[0] & 0xf) | TWEAK_M;
let (data_blocks, mut tail) = buffer.into_chunks();
let mut data_blocks_len = data_blocks.len();
for (index, data) in data_blocks.into_iter().enumerate() {
// Copy block number
let tmp = tweak[8] & 0xf0;
tweak[8..].copy_from_slice(&(index as u64).to_be_bytes());
tweak[8] = (tweak[8] & 0xf) | tmp;
for (c, d) in checksum.iter_mut().zip(data.get_in().iter()) {
*c ^= d;
}
B::encrypt_inout(data, &tweak, subkeys);
}
// Process incomplete last block
if !tail.is_empty() {
// Copy block number
let tmp = tweak[8] & 0xf0;
tweak[8..].copy_from_slice(&(data_blocks_len as u64).to_be_bytes());
tweak[8] = (tweak[8] & 0xf) | tmp;
// Last block checksum
tweak[0] = (tweak[0] & 0xf) | TWEAK_M_LAST;
let mut block = Block::default();
block[..tail.len()].copy_from_slice(tail.get_in());
block[tail.len()] = 0x80;
for (c, d) in checksum.iter_mut().zip(block.iter()) {
*c ^= d;
}
block.fill(0);
// Last block encryption
B::encrypt_inout((&mut block).into(), &tweak, subkeys);
tail.xor_in2out((block[..tail.len()]).into());
data_blocks_len += 1;
};
// Tag computing.
let t = if tail.is_empty() {
TWEAK_TAG
} else {
TWEAK_CHKSUM
};
tweak[0] = (tweak[0] & 0xf) | t;
let tmp = tweak[8] & 0xf0;
tweak[8..].copy_from_slice(&(data_blocks_len as u64).to_be_bytes());
tweak[8] = (tweak[8] & 0xf) | tmp;
B::encrypt_inout((&mut checksum).into(), tweak.as_ref(), subkeys);
for (t, c) in tag.iter_mut().zip(checksum.iter()) {
*t ^= c;
}
tag
}
fn decrypt_inout(
nonce: &Array<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: InOutBuf<'_, '_, u8>,
tag: &Tag,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
) -> Result<(), aead::Error> {
let mut computed_tag = Tag::default();
let mut checksum = Checksum::default();
let mut tweak = Tweak::default();
// Associated Data
<Self as DeoxysModeInternal<B>>::compute_ad_tag(
associated_data,
&mut tweak,
subkeys,
&mut computed_tag,
);
// Add the nonce to the tweak
tweak[0] = nonce[0] >> 4;
for i in 1..nonce.len() {
tweak[i] = (nonce[i - 1] << 4) | (nonce[i] >> 4);
}
tweak[8] = nonce[7] << 4;
// Message authentication and encryption
tweak[0] = (tweak[0] & 0xf) | TWEAK_M;
let (data_blocks, mut tail) = buffer.into_chunks();
let mut data_blocks_len = data_blocks.len();
for (index, mut data) in data_blocks.into_iter().enumerate() {
// Copy block number
let tmp = tweak[8] & 0xf0;
tweak[8..].copy_from_slice(&(index as u64).to_be_bytes());
tweak[8] = (tweak[8] & 0xf) | tmp;
B::decrypt_inout(data.reborrow(), tweak.as_ref(), subkeys);
for (c, d) in checksum.iter_mut().zip(data.get_out().iter()) {
*c ^= d;
}
}
// Process incomplete last block
if !tail.is_empty() {
// Copy block number
let tmp = tweak[8] & 0xf0;
tweak[8..].copy_from_slice(&(data_blocks_len as u64).to_be_bytes());
tweak[8] = (tweak[8] & 0xf) | tmp;
// Last block checksum
tweak[0] = (tweak[0] & 0xf) | TWEAK_M_LAST;
let mut block = Block::default();
B::encrypt_inout((&mut block).into(), tweak.as_ref(), subkeys);
tail.xor_in2out((block[..tail.len()]).into());
block.fill(0);
block[..tail.len()].copy_from_slice(tail.get_out());
block[tail.len()] = 0x80;
for (c, d) in checksum.iter_mut().zip(block.iter()) {
*c ^= d;
}
data_blocks_len += 1;
}
// Tag computing.
let t = if tail.is_empty() {
TWEAK_TAG
} else {
TWEAK_CHKSUM
};
tweak[0] = (tweak[0] & 0xf) | t;
let tmp = tweak[8] & 0xf0;
tweak[8..].copy_from_slice(&(data_blocks_len as u64).to_be_bytes());
tweak[8] = (tweak[8] & 0xf) | tmp;
B::encrypt_inout((&mut checksum).into(), tweak.as_ref(), subkeys);
for (t, c) in computed_tag.iter_mut().zip(checksum.iter()) {
*t ^= c;
}
if tag.ct_eq(&computed_tag).into() {
Ok(())
} else {
Err(aead::Error)
}
}
}
impl<B> DeoxysII<B>
where
B: DeoxysBcType,
{
fn authenticate_message(
buffer: &[u8],
tweak: &mut Tweak,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
tag: &mut Tag,
) {
if buffer.is_empty() {
return;
}
tweak[0] = TWEAK_M;
let (chunks, tail) = Block::slice_as_chunks(buffer);
for (index, data) in chunks.iter().enumerate() {
// Copy block number
tweak[8..].copy_from_slice(&(index as u64).to_be_bytes());
let mut block = *data;
B::encrypt_inout((&mut block).into(), tweak, subkeys);
for (t, b) in tag.iter_mut().zip(block.iter()) {
*t ^= b;
}
}
let index = chunks.len();
let data = tail;
if data.is_empty() {
return;
}
// Copy block number
tweak[8..].copy_from_slice(&(index as u64).to_be_bytes());
// Last block
tweak[0] = TWEAK_M_LAST;
let mut block = Block::default();
block[0..data.len()].copy_from_slice(data);
block[data.len()] = 0x80;
B::encrypt_inout((&mut block).into(), tweak, subkeys);
for (t, b) in tag.iter_mut().zip(block.iter()) {
*t ^= b;
}
}
fn encrypt_decrypt_message(
buffer: InOutBuf<'_, '_, u8>,
tweak: &mut Tweak,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
tag: &Tag,
nonce: &Array<u8, U15>,
) {
#[inline]
fn encrypt_decrypt_block<B: DeoxysBcType, F: FnOnce(&Block)>(
index: usize,
tweak: &mut Tweak,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
nonce: &Array<u8, U15>,
xor: F,
) {
let index_array = (index as u64).to_be_bytes();
// XOR in block numbers
for (t, i) in tweak[8..].iter_mut().zip(&index_array) {
*t ^= i
}
let mut block = Block::default();
block[1..].copy_from_slice(nonce);
B::encrypt_inout((&mut block).into(), tweak, subkeys);
xor(&block);
// XOR out block numbers
for (t, i) in tweak[8..].iter_mut().zip(&index_array) {
*t ^= i
}
}
if buffer.is_empty() {
return;
}
tweak.copy_from_slice(tag);
tweak[0] |= 0x80;
let (blocks, tail) = buffer.into_chunks::<U16>();
let blocks_len = blocks.len();
for (index, mut data) in blocks.into_iter().enumerate() {
encrypt_decrypt_block::<B, _>(index, tweak, subkeys, nonce, |block| {
data.xor_in2out(block)
});
}
let mut data = tail;
if !data.is_empty() {
let index = blocks_len;
encrypt_decrypt_block::<B, _>(index, tweak, subkeys, nonce, |block| {
data.xor_in2out((block[..data.len()]).into())
});
}
}
}
impl<B> DeoxysMode<B> for DeoxysII<B>
where
B: DeoxysBcType,
{
type NonceSize = U15;
fn encrypt_inout(
nonce: &Array<u8, Self::NonceSize>,
associated_data: &[u8],
buffer: InOutBuf<'_, '_, u8>,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
) -> Tag {
let mut tag = Tag::default();
let mut tweak = Tweak::default();
// Associated Data
<Self as DeoxysModeInternal<B>>::compute_ad_tag(
associated_data,
&mut tweak,
subkeys,
&mut tag,
);
// Message authentication
Self::authenticate_message(buffer.get_in(), &mut tweak, subkeys, &mut tag);
tweak[0] = TWEAK_TAG;
tweak[1..].copy_from_slice(nonce);
B::encrypt_inout((&mut tag).into(), &tweak, subkeys);
// Message encryption
Self::encrypt_decrypt_message(buffer, &mut tweak, subkeys, &tag, nonce);
tag
}
fn decrypt_inout(
nonce: &Array<u8, Self::NonceSize>,
associated_data: &[u8],
mut buffer: InOutBuf<'_, '_, u8>,
tag: &Tag,
subkeys: &Array<DeoxysKey, B::SubkeysSize>,
) -> Result<(), aead::Error> {
let mut computed_tag = Tag::default();
let mut tweak = Tweak::default();
// Associated Data
<Self as DeoxysModeInternal<B>>::compute_ad_tag(
associated_data,
&mut tweak,
subkeys,
&mut computed_tag,
);
// Message decryption
Self::encrypt_decrypt_message(buffer.reborrow(), &mut tweak, subkeys, tag, nonce);
tweak.fill(0);
// Message authentication
Self::authenticate_message(buffer.get_out(), &mut tweak, subkeys, &mut computed_tag);
tweak[0] = TWEAK_TAG;
tweak[1..].copy_from_slice(nonce);
B::encrypt_inout((&mut computed_tag).into(), &tweak, subkeys);
if tag.ct_eq(&computed_tag).into() {
Ok(())
} else {
Err(aead::Error)
}
}
}