-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathlib.rs
More file actions
501 lines (459 loc) · 12.6 KB
/
lib.rs
File metadata and controls
501 lines (459 loc) · 12.6 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
//! Pure Rust implementation of the [RC5] block cipher.
//!
//! # ⚠️ Security Warning: Hazmat!
//!
//! This crate implements only the low-level block cipher function, and is intended
//! for use for implementing higher-level constructions *only*. It is NOT
//! intended for direct use in applications.
//!
//! USE AT YOUR OWN RISK!
//!
//! [RC5]: https://en.wikipedia.org/wiki/RC5
#![no_std]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg"
)]
#![deny(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, rust_2018_idioms)]
use cipher::{
AlgorithmName, Array, BlockCipherDecBackend, BlockCipherDecClosure, BlockCipherDecrypt,
BlockCipherEncBackend, BlockCipherEncClosure, BlockCipherEncrypt, BlockSizeUser, KeyInit,
KeySizeUser, ParBlocksSizeUser,
array::ArraySize,
common::BlockSizes,
consts::{U1, U2, U256},
inout::InOut,
typenum::{Diff, IsLess, Le, NonZero, Sum, Unsigned},
};
use core::{
cmp::max,
fmt,
marker::PhantomData,
ops::{Add, Div, Mul, Sub},
};
#[cfg(feature = "zeroize")]
use cipher::zeroize::{Zeroize, ZeroizeOnDrop};
mod primitives;
use primitives::{
Block, BlockSize, ExpandedKeyTable, ExpandedKeyTableSize, Key, KeyAsWords, KeyAsWordsSize, Word,
};
/// RC5 block cipher instance.
#[derive(Clone)]
pub struct RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
key_table: ExpandedKeyTable<W, R>,
_key_size: PhantomData<B>,
}
impl<W, R, B> RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
// Key range
B: ArraySize,
B: IsLess<U256>,
Le<B, U256>: NonZero,
// KeyAsWordsSize
B: Add<W::Bytes>,
Sum<B, W::Bytes>: Sub<U1>,
Diff<Sum<B, W::Bytes>, U1>: Div<W::Bytes>,
KeyAsWordsSize<W, B>: ArraySize,
{
pub(crate) fn substitute_key(key: &Key<B>) -> ExpandedKeyTable<W, R> {
let key_as_words = Self::key_into_words(key);
let expanded_key_table = Self::initialize_expanded_key_table();
Self::mix_in(expanded_key_table, key_as_words)
}
fn key_into_words(key: &Key<B>) -> KeyAsWords<W, B> {
// can be uninitialized
let mut key_as_words: Array<W, KeyAsWordsSize<W, B>> = Array::default();
for i in (0..B::USIZE).rev() {
key_as_words[i / W::Bytes::USIZE] =
key_as_words[i / W::Bytes::USIZE].rotate_left(W::EIGHT) + key[i].into();
// no need for wrapping addition since we are adding a byte sized uint onto an uint with its lsb byte zeroed
}
key_as_words
}
fn initialize_expanded_key_table() -> ExpandedKeyTable<W, R> {
// must be zero initialized
let mut expanded_key_table: Array<W, ExpandedKeyTableSize<R>> = Array::from_fn(|_| W::ZERO);
expanded_key_table[0] = W::P;
for i in 1..expanded_key_table.len() {
expanded_key_table[i] = expanded_key_table[i - 1].wrapping_add(W::Q);
}
expanded_key_table
}
fn mix_in(
mut key_table: ExpandedKeyTable<W, R>,
mut key_as_words: KeyAsWords<W, B>,
) -> ExpandedKeyTable<W, R> {
let (mut expanded_key_index, mut key_as_words_index) = (0, 0);
let (mut a, mut b) = (W::ZERO, W::ZERO);
for _ in 0..3 * max(key_as_words.len(), key_table.len()) {
key_table[expanded_key_index] = key_table[expanded_key_index]
.wrapping_add(a)
.wrapping_add(b)
.rotate_left(W::THREE);
a = key_table[expanded_key_index];
key_as_words[key_as_words_index] = key_as_words[key_as_words_index]
.wrapping_add(a)
.wrapping_add(b)
.rotate_left(a.wrapping_add(b));
b = key_as_words[key_as_words_index];
expanded_key_index = (expanded_key_index + 1) % key_table.len();
key_as_words_index = (key_as_words_index + 1) % key_as_words.len();
}
key_table
}
}
impl<W, R, B> RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
pub(crate) fn words_from_block(block: &Block<W>) -> (W, W) {
// Block size is 2 * word::BYTES so the unwrap is safe
let a = W::from_le_bytes(block[..W::Bytes::USIZE].try_into().unwrap());
let b = W::from_le_bytes(block[W::Bytes::USIZE..].try_into().unwrap());
(a, b)
}
pub(crate) fn block_from_words(a: W, b: W, out_block: &mut Block<W>) {
let (left, right) = out_block.split_at_mut(W::Bytes::USIZE);
left.copy_from_slice(&a.to_le_bytes());
right.copy_from_slice(&b.to_le_bytes());
}
}
impl<W, R, B> KeyInit for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
// Key range
B: ArraySize,
B: IsLess<U256>,
Le<B, U256>: NonZero,
// KeyAsWordsSize
B: Add<W::Bytes>,
Sum<B, W::Bytes>: Sub<U1>,
Diff<Sum<B, W::Bytes>, U1>: Div<W::Bytes>,
KeyAsWordsSize<W, B>: ArraySize,
{
fn new(key: &cipher::Key<Self>) -> Self {
Self {
key_table: Self::substitute_key(key),
_key_size: PhantomData,
}
}
}
impl<W, R, B> KeySizeUser for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
B: ArraySize,
{
type KeySize = B;
}
impl<W, R, B> BlockSizeUser for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
type BlockSize = BlockSize<W>;
}
impl<W, R, B> ParBlocksSizeUser for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
type ParBlocksSize = U1;
}
impl<W, R, B> BlockCipherEncrypt for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
// Key range
B: ArraySize,
B: IsLess<U256>,
Le<B, U256>: NonZero,
// KeyAsWordsSize
B: Add<W::Bytes>,
Sum<B, W::Bytes>: Sub<U1>,
Diff<Sum<B, W::Bytes>, U1>: Div<W::Bytes>,
KeyAsWordsSize<W, B>: ArraySize,
{
fn encrypt_with_backend(&self, f: impl BlockCipherEncClosure<BlockSize = Self::BlockSize>) {
f.call(self)
}
}
impl<W, R, B> BlockCipherEncBackend for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
// Key range
B: ArraySize,
B: IsLess<U256>,
Le<B, U256>: NonZero,
// KeyAsWordsSize
B: Add<W::Bytes>,
Sum<B, W::Bytes>: Sub<U1>,
Diff<Sum<B, W::Bytes>, U1>: Div<W::Bytes>,
KeyAsWordsSize<W, B>: ArraySize,
{
#[inline(always)]
fn encrypt_block(&self, mut block: InOut<'_, '_, cipher::Block<Self>>) {
let (mut a, mut b) = Self::words_from_block(block.get_in());
let key = &self.key_table;
a = a.wrapping_add(key[0]);
b = b.wrapping_add(key[1]);
for i in 1..=R::USIZE {
a = a.bitxor(b).rotate_left(b).wrapping_add(key[2 * i]);
b = b.bitxor(a).rotate_left(a).wrapping_add(key[2 * i + 1]);
}
Self::block_from_words(a, b, block.get_out())
}
}
impl<W, R, B> BlockCipherDecrypt for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
// Key range
B: ArraySize,
B: IsLess<U256>,
Le<B, U256>: NonZero,
// KeyAsWordsSize
B: Add<W::Bytes>,
Sum<B, W::Bytes>: Sub<U1>,
Diff<Sum<B, W::Bytes>, U1>: Div<W::Bytes>,
KeyAsWordsSize<W, B>: ArraySize,
{
fn decrypt_with_backend(&self, f: impl BlockCipherDecClosure<BlockSize = Self::BlockSize>) {
f.call(self)
}
}
impl<W, R, B> BlockCipherDecBackend for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
// Key range
B: ArraySize,
B: IsLess<U256>,
Le<B, U256>: NonZero,
// KeyAsWordsSize
B: Add<W::Bytes>,
Sum<B, W::Bytes>: Sub<U1>,
Diff<Sum<B, W::Bytes>, U1>: Div<W::Bytes>,
KeyAsWordsSize<W, B>: ArraySize,
{
#[inline(always)]
fn decrypt_block(&self, mut block: InOut<'_, '_, cipher::Block<Self>>) {
let (mut a, mut b) = Self::words_from_block(block.get_in());
let key = &self.key_table;
for i in (1..=R::USIZE).rev() {
b = b.wrapping_sub(key[2 * i + 1]).rotate_right(a).bitxor(a);
a = a.wrapping_sub(key[2 * i]).rotate_right(b).bitxor(b);
}
b = b.wrapping_sub(key[1]);
a = a.wrapping_sub(key[0]);
Self::block_from_words(a, b, block.get_out())
}
}
impl<W, R, B> AlgorithmName for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
fn write_alg_name(f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"RC5 - {}/{}/{}",
core::any::type_name::<W>(),
<R as Unsigned>::to_u8(),
<R as Unsigned>::to_u8(),
)
}
}
impl<W, R, B> fmt::Debug for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"RC5 - {}/{}/{} {{ ... }}",
core::any::type_name::<W>(),
<R as Unsigned>::to_u8(),
<R as Unsigned>::to_u8(),
)
}
}
#[cfg(feature = "zeroize")]
impl<W, R, B> ZeroizeOnDrop for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
}
impl<W, R, B> Drop for RC5<W, R, B>
where
W: Word,
// Block size
W::Bytes: Mul<U2>,
BlockSize<W>: BlockSizes,
// Rounds range
R: Unsigned,
R: IsLess<U256>,
Le<R, U256>: NonZero,
// ExpandedKeyTableSize
R: Add<U1>,
Sum<R, U1>: Mul<U2>,
ExpandedKeyTableSize<R>: ArraySize,
{
fn drop(&mut self) {
#[cfg(feature = "zeroize")]
self.key_table.zeroize()
}
}