-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathlib.rs
More file actions
201 lines (175 loc) · 5.94 KB
/
lib.rs
File metadata and controls
201 lines (175 loc) · 5.94 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
//! Pure Rust implementation of the [BelT] block cipher specified in
//! [STB 34.101.31-2020].
//!
//! # ⚠️ 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!
//!
//! [BelT]: https://ru.wikipedia.org/wiki/BelT
//! [STB 34.101.31-2020]: http://apmi.bsu.by/assets/files/std/belt-spec371.pdf
#![no_std]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, rust_2018_idioms)]
#![forbid(unsafe_code)]
#[cfg(feature = "cipher")]
pub use cipher;
use crate::consts::{H5, H13, H21, H29};
use core::{mem::swap, num::Wrapping};
#[cfg(feature = "cipher")]
mod cipher_impl;
mod consts;
#[cfg(feature = "cipher")]
pub use cipher_impl::BeltBlock;
macro_rules! g {
($($name:ident: ($a:expr, $b:expr, $c:expr, $d:expr)),+) => {
$(
#[inline]
fn $name(Wrapping(u): Wrapping<u32>) -> Wrapping<u32> {
Wrapping($a[((u >> 24) & 0xFF) as usize]
^ $b[((u >> 16) & 0xFF) as usize]
^ $c[((u >> 8) & 0xFF) as usize]
^ $d[(u & 0xFF) as usize])
}
)+
}
}
g!(
g5: (H29, H21, H13, H5),
g13: (H5, H29, H21, H13),
g21: (H13, H5, H29, H21)
);
#[inline(always)]
fn key_idx(key: &[u32; 8], i: usize, delta: usize) -> Wrapping<u32> {
Wrapping(key[(7 * i - delta - 1) % 8])
}
/// Raw BelT block encryption function used for implementation of
/// higher-level algorithms.
#[inline(always)]
pub fn belt_block_raw(x: [u32; 4], key: &[u32; 8]) -> [u32; 4] {
let mut a = Wrapping(x[0]);
let mut b = Wrapping(x[1]);
let mut c = Wrapping(x[2]);
let mut d = Wrapping(x[3]);
// Step 5
for i in 1..9 {
// 5.1) b ← b ⊕ G₅(a ⊞ k[7i-6])
b ^= g5(a + key_idx(key, i, 6));
// 5.2) c ← c ⊕ G₂₁(d ⊞ k[7i-5])
c ^= g21(d + key_idx(key, i, 5));
// 5.3) a ← a ⊟ G₁₃(b ⊞ k[7i-4])
a -= g13(b + key_idx(key, i, 4));
// 5.4) e ← G₂₁(b ⊞ c ⊞ k[7i-3]) ⊕ ⟨i⟩₃₂ ;
let e = g21(b + c + key_idx(key, i, 3)) ^ Wrapping(i as u32);
// 5.5) b ← b ⊞ e
b += e;
// 5.6) c ← c ⊟ e
c -= e;
// 5.7) d ← d ⊞ G₁₃(c ⊞ 𝑘[7i-2])
d += g13(c + key_idx(key, i, 2));
// 5.8) b ← b ⊕ G₂₁(a ⊞ 𝑘[(7i-1])
b ^= g21(a + key_idx(key, i, 1));
// 5.9) c ← c ⊕ G₅(d ⊞ 𝑘[7i])
c ^= g5(d + key_idx(key, i, 0));
// 5.10) a ↔ b
swap(&mut a, &mut b);
// 5.11) c ↔ d
swap(&mut c, &mut d);
// 5.12) b ↔ c
swap(&mut b, &mut c);
}
// Step 6
[b.0, d.0, a.0, c.0]
}
const BLOCK_SIZE: usize = 16;
type Block = [u8; BLOCK_SIZE];
/// Wide block encryption as described in section 6.2.3 of the standard.
///
/// Returns [`InvalidLengthError`] if `data` is smaller than 32 bytes.
#[inline]
pub fn belt_wblock_enc(data: &mut [u8], key: &[u32; 8]) -> Result<(), InvalidLengthError> {
if data.len() < 2 * BLOCK_SIZE {
return Err(InvalidLengthError);
}
let len = data.len();
let n = len.div_ceil(BLOCK_SIZE);
for i in 1..(2 * n + 1) {
let s = data[..len - 1]
.chunks_exact(BLOCK_SIZE)
.fold(Block::default(), xor);
data.copy_within(BLOCK_SIZE.., 0);
let (tail1, tail2) = data[len - 2 * BLOCK_SIZE..].split_at_mut(BLOCK_SIZE);
tail2.copy_from_slice(&s);
let s = belt_block_raw(to_u32(&s), key);
xor_set(tail1, &from_u32::<16>(&s));
xor_set(tail1, &i.to_le_bytes());
}
Ok(())
}
/// Wide block decryption as described in section 6.2.4 of the standard.
///
/// Returns [`InvalidLengthError`] if `data` is smaller than 32 bytes.
#[inline]
pub fn belt_wblock_dec(data: &mut [u8], key: &[u32; 8]) -> Result<(), InvalidLengthError> {
if data.len() < 2 * BLOCK_SIZE {
return Err(InvalidLengthError);
}
let len = data.len();
let n = len.div_ceil(BLOCK_SIZE);
for i in (1..(2 * n + 1)).rev() {
let tail_pos = len - BLOCK_SIZE;
let s = Block::try_from(&data[tail_pos..]).unwrap();
data.copy_within(..tail_pos, BLOCK_SIZE);
let s_enc = belt_block_raw(to_u32(&s), key);
xor_set(&mut data[tail_pos..], &from_u32::<16>(&s_enc));
xor_set(&mut data[tail_pos..], &i.to_le_bytes());
let r1 = data[..len - 1]
.chunks_exact(BLOCK_SIZE)
.skip(1)
.fold(s, xor);
data[..BLOCK_SIZE].copy_from_slice(&r1);
}
Ok(())
}
/// Error used when data smaller than 32 bytes is passed to the `belt-wblock` functions.
#[derive(Debug, Copy, Clone)]
pub struct InvalidLengthError;
/// Helper function for transforming BelT keys and blocks from a byte array
/// to an array of `u32`s.
///
/// # Panics
/// If length of `src` is not equal to `4 * N`.
#[inline(always)]
fn to_u32<const N: usize>(src: &[u8]) -> [u32; N] {
assert_eq!(src.len(), 4 * N);
let mut res = [0u32; N];
res.iter_mut()
.zip(src.chunks_exact(4))
.for_each(|(dst, src)| *dst = u32::from_le_bytes(src.try_into().unwrap()));
res
}
#[inline(always)]
fn from_u32<const N: usize>(src: &[u32]) -> [u8; N] {
assert_eq!(N, 4 * src.len());
let mut res = [0u8; N];
res.chunks_exact_mut(4)
.zip(src.iter())
.for_each(|(dst, src)| dst.copy_from_slice(&src.to_le_bytes()));
res
}
#[inline(always)]
fn xor_set(block: &mut [u8], val: &[u8]) {
block.iter_mut().zip(val.iter()).for_each(|(a, b)| *a ^= b);
}
#[inline(always)]
fn xor(mut block: Block, val: &[u8]) -> Block {
block.iter_mut().zip(val.iter()).for_each(|(a, b)| *a ^= b);
block
}