forked from alexfertel/rust-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tea.rs
184 lines (164 loc) · 4.64 KB
/
tea.rs
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
use std::num::Wrapping as W;
/// TEA context, a struct that holds the keys for TEA encryption and decryption.
struct TeaContext {
key0: u64,
key1: u64,
}
impl TeaContext {
/// Create a new TEA context with the given keys.
pub fn new(key: &[u64; 2]) -> TeaContext {
TeaContext {
key0: key[0],
key1: key[1],
}
}
/// Encrypt a block of data.
///
/// # Arguments
///
/// * `block` - The block of data to encrypt.
///
/// # Returns
///
/// The encrypted block of data.
///
pub fn encrypt_block(&self, block: u64) -> u64 {
let (mut b0, mut b1) = divide_u64(block);
let (k0, k1) = divide_u64(self.key0);
let (k2, k3) = divide_u64(self.key1);
let mut sum = W(0u32);
for _ in 0..32 {
sum += W(0x9E3779B9);
b0 += ((b1 << 4) + k0) ^ (b1 + sum) ^ ((b1 >> 5) + k1);
b1 += ((b0 << 4) + k2) ^ (b0 + sum) ^ ((b0 >> 5) + k3);
}
((b1.0 as u64) << 32) | b0.0 as u64
}
/// Decrypt a block of data.
///
/// # Arguments
///
/// * `block` - The block of data to decrypt.
///
/// # Returns
///
/// The decrypted block of data.
///
pub fn decrypt_block(&self, block: u64) -> u64 {
let (mut b0, mut b1) = divide_u64(block);
let (k0, k1) = divide_u64(self.key0);
let (k2, k3) = divide_u64(self.key1);
let mut sum = W(0xC6EF3720u32);
for _ in 0..32 {
b1 -= ((b0 << 4) + k2) ^ (b0 + sum) ^ ((b0 >> 5) + k3);
b0 -= ((b1 << 4) + k0) ^ (b1 + sum) ^ ((b1 >> 5) + k1);
sum -= W(0x9E3779B9);
}
((b1.0 as u64) << 32) | b0.0 as u64
}
}
#[inline]
fn divide_u64(n: u64) -> (W<u32>, W<u32>) {
(W(n as u32), W((n >> 32) as u32))
}
/// Encrypt a plaintext using the TEA algorithm.
///
/// # Arguments
///
/// * `plain` - The plaintext to encrypt.
/// * `key` - The key to use for encryption.
///
/// # Returns
///
/// The encrypted plaintext.
///
/// # Example
/// ```rust
/// use rust_algorithms::ciphers::tea_encrypt;
///
/// let plain_data = &[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00];
/// let key = &[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
/// 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00];
///
/// let encrypted = tea_encrypt(plain_data, key);
///
/// assert_eq!(encrypted,[0x0A, 0x3A, 0xEA, 0x41, 0x40, 0xA9, 0xBA, 0x94]);
/// ```
pub fn tea_encrypt(plain: &[u8], key: &[u8]) -> Vec<u8> {
let tea = TeaContext::new(&[to_block(&key[..8]), to_block(&key[8..16])]);
let mut result: Vec<u8> = Vec::new();
for i in (0..plain.len()).step_by(8) {
let block = to_block(&plain[i..i + 8]);
result.extend(from_block(tea.encrypt_block(block)).iter());
}
result
}
/// Decrypt a ciphertext using the TEA algorithm.
///
/// # Arguments
///
/// * `cipher` - The ciphertext to decrypt.
/// * `key` - The key to use for decryption.
///
/// # Returns
///
/// The decrypted ciphertext.
///
/// # Example
/// ```rust
/// use rust_algorithms::ciphers::{tea_encrypt, tea_decrypt};
///
/// let plain = &[0x1b, 0xcc, 0xd4, 0x31, 0xa0, 0xf6, 0x8a, 0x55];
/// let key = &[0x20, 0x45, 0x08, 0x10, 0xb0, 0x23, 0xe2, 0x17,
/// 0xc3, 0x81, 0xd6, 0xf2, 0xee, 0x00, 0xa4, 0x8a,];
/// let cipher = tea_encrypt(plain, key);
///
/// assert_eq!(tea_decrypt(&cipher[..], key), plain);
/// ```
pub fn tea_decrypt(cipher: &[u8], key: &[u8]) -> Vec<u8> {
let tea = TeaContext::new(&[to_block(&key[..8]), to_block(&key[8..16])]);
let mut result: Vec<u8> = Vec::new();
for i in (0..cipher.len()).step_by(8) {
let block = to_block(&cipher[i..i + 8]);
result.extend(from_block(tea.decrypt_block(block)).iter());
}
result
}
#[inline]
fn to_block(data: &[u8]) -> u64 {
data[0] as u64
| (data[1] as u64) << 8
| (data[2] as u64) << 16
| (data[3] as u64) << 24
| (data[4] as u64) << 32
| (data[5] as u64) << 40
| (data[6] as u64) << 48
| (data[7] as u64) << 56
}
fn from_block(block: u64) -> [u8; 8] {
[
block as u8,
(block >> 8) as u8,
(block >> 16) as u8,
(block >> 24) as u8,
(block >> 32) as u8,
(block >> 40) as u8,
(block >> 48) as u8,
(block >> 56) as u8,
]
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_block_convert() {
assert_eq!(
to_block(&[0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef]),
0xefcdab8967452301
);
assert_eq!(
from_block(0xefcdab8967452301),
[0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef]
);
}
}