-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathlib.rs
More file actions
211 lines (187 loc) · 5.98 KB
/
lib.rs
File metadata and controls
211 lines (187 loc) · 5.98 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
//! Pure Rust implementation of the [Magma] block cipher defined in GOST 28147-89
//! and [GOST R 34.12-2015].
//!
//! # ⚠️ 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!
//!
//! # Examples
//! ```
//! use magma::Magma;
//! use magma::cipher::{Array, BlockCipherEncrypt, BlockCipherDecrypt, KeyInit};
//! use hex_literal::hex;
//!
//! // Example vector from GOST 34.12-2018
//! let key = hex!(
//! "FFEEDDCCBBAA99887766554433221100"
//! "F0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF"
//! );
//! let plaintext = hex!("FEDCBA9876543210");
//! let ciphertext = hex!("4EE901E5C2D8CA3D");
//!
//! let cipher = Magma::new(&key.into());
//!
//! let mut block = Array::clone_from_slice(&plaintext);
//! cipher.encrypt_block(&mut block);
//! assert_eq!(&ciphertext, block.as_slice());
//!
//! cipher.decrypt_block(&mut block);
//! assert_eq!(&plaintext, block.as_slice());
//! ```
//!
//! [Magma]: https://en.wikipedia.org/wiki/GOST_(block_cipher)
//! [GOST R 34.12-2015]: https://tc26.ru/standard/gost/GOST_R_3412-2015.pdf
#![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)]
pub use cipher;
use cipher::{
AlgorithmName, Block, BlockCipherDecBackend, BlockCipherDecClosure, BlockCipherDecrypt,
BlockCipherEncBackend, BlockCipherEncClosure, BlockCipherEncrypt, BlockSizeUser, InOut, Key,
KeyInit, KeySizeUser, ParBlocksSizeUser,
consts::{U1, U8, U32},
};
use core::{fmt, marker::PhantomData};
#[cfg(feature = "zeroize")]
use cipher::zeroize::{Zeroize, ZeroizeOnDrop};
mod sboxes;
pub use sboxes::Sbox;
use sboxes::SboxExt;
/// Block cipher defined in GOST 28147-89 generic over S-box
pub struct Gost89<S: Sbox> {
key: [u32; 8],
_p: PhantomData<S>,
}
impl<S: Sbox> KeySizeUser for Gost89<S> {
type KeySize = U32;
}
impl<S: Sbox> KeyInit for Gost89<S> {
#[inline]
fn new(key: &Key<Self>) -> Self {
let mut key_u32 = [0u32; 8];
key.chunks_exact(4)
.zip(key_u32.iter_mut())
.for_each(|(chunk, v)| *v = to_u32(chunk));
Self {
key: key_u32,
_p: PhantomData,
}
}
}
impl<S: Sbox> BlockSizeUser for Gost89<S> {
type BlockSize = U8;
}
impl<S: Sbox> ParBlocksSizeUser for Gost89<S> {
type ParBlocksSize = U1;
}
impl<S: Sbox> BlockCipherEncBackend for Gost89<S> {
#[inline]
fn encrypt_block(&self, mut block: InOut<'_, '_, Block<Self>>) {
let b = block.get_in();
let mut v = (to_u32(&b[0..4]), to_u32(&b[4..8]));
for _ in 0..3 {
for i in 0..8 {
v = (v.1, v.0 ^ S::g(v.1, self.key[i]));
}
}
for i in (0..8).rev() {
v = (v.1, v.0 ^ S::g(v.1, self.key[i]));
}
let block = block.get_out();
block[0..4].copy_from_slice(&v.1.to_be_bytes());
block[4..8].copy_from_slice(&v.0.to_be_bytes());
}
}
impl<S: Sbox> BlockCipherEncrypt for Gost89<S> {
#[inline]
fn encrypt_with_backend(&self, f: impl BlockCipherEncClosure<BlockSize = Self::BlockSize>) {
f.call(self)
}
}
impl<S: Sbox> BlockCipherDecBackend for Gost89<S> {
#[inline]
fn decrypt_block(&self, mut block: InOut<'_, '_, Block<Self>>) {
let b = block.get_in();
let mut v = (to_u32(&b[0..4]), to_u32(&b[4..8]));
for i in 0..8 {
v = (v.1, v.0 ^ S::g(v.1, self.key[i]));
}
for _ in 0..3 {
for i in (0..8).rev() {
v = (v.1, v.0 ^ S::g(v.1, self.key[i]));
}
}
let block = block.get_out();
block[0..4].copy_from_slice(&v.1.to_be_bytes());
block[4..8].copy_from_slice(&v.0.to_be_bytes());
}
}
impl<S: Sbox> BlockCipherDecrypt for Gost89<S> {
#[inline]
fn decrypt_with_backend(&self, f: impl BlockCipherDecClosure<BlockSize = Self::BlockSize>) {
f.call(self)
}
}
impl<S: Sbox> Clone for Gost89<S> {
fn clone(&self) -> Self {
Self {
key: self.key,
_p: PhantomData,
}
}
}
impl<S: Sbox> fmt::Debug for Gost89<S> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if S::NAME == "Tc26" {
f.write_str("Magma { ... }")
} else {
f.write_str("Gost89<")?;
f.write_str(S::NAME)?;
f.write_str("> { ... }")
}
}
}
impl<S: Sbox> AlgorithmName for Gost89<S> {
fn write_alg_name(f: &mut fmt::Formatter<'_>) -> fmt::Result {
if S::NAME == "Tc26" {
f.write_str("Magma")
} else {
f.write_str("Gost89<")?;
f.write_str(S::NAME)?;
f.write_str(">")
}
}
}
impl<S: Sbox> Drop for Gost89<S> {
fn drop(&mut self) {
#[cfg(feature = "zeroize")]
self.key.zeroize();
}
}
#[cfg(feature = "zeroize")]
impl<S: Sbox> ZeroizeOnDrop for Gost89<S> {}
/// Block cipher defined in GOST R 34.12-2015 (Magma)
pub type Magma = Gost89<sboxes::Tc26>;
/// Block cipher defined in GOST 28147-89 with test S-box
pub type Gost89Test = Gost89<sboxes::TestSbox>;
/// Block cipher defined in GOST 28147-89 with CryptoPro S-box version A
pub type Gost89CryptoProA = Gost89<sboxes::CryptoProA>;
/// Block cipher defined in GOST 28147-89 with CryptoPro S-box version B
pub type Gost89CryptoProB = Gost89<sboxes::CryptoProB>;
/// Block cipher defined in GOST 28147-89 with CryptoPro S-box version C
pub type Gost89CryptoProC = Gost89<sboxes::CryptoProC>;
/// Block cipher defined in GOST 28147-89 with CryptoPro S-box version D
pub type Gost89CryptoProD = Gost89<sboxes::CryptoProD>;
#[inline(always)]
fn to_u32(chunk: &[u8]) -> u32 {
u32::from_be_bytes(chunk.try_into().unwrap())
}