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
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
extern crate digest;
mod ciphers;
mod errors;
mod functions;
mod macros;
mod secure_bit;
mod traits;
use alloc::vec::Vec;
#[cfg(feature = "std")]
use std::io::{Read, Write};
#[cfg(feature = "std")]
use std::ops::Add;
pub use ciphers::aes128::MagicCrypt128;
pub use ciphers::aes192::MagicCrypt192;
pub use ciphers::aes256::MagicCrypt256;
pub use ciphers::des64::MagicCrypt64;
pub use digest::generic_array;
pub use errors::MagicCryptError;
pub use secure_bit::SecureBit;
pub use traits::MagicCryptTrait;
#[cfg(feature = "std")]
use generic_array::typenum::{IsGreaterOrEqual, PartialDiv, True, B1, U16};
#[cfg(feature = "std")]
use generic_array::ArrayLength;
#[derive(Debug, Clone)]
enum MagicCryptCipher {
DES64(MagicCrypt64),
AES128(MagicCrypt128),
AES192(MagicCrypt192),
AES256(MagicCrypt256),
}
#[derive(Debug, Clone)]
pub struct MagicCrypt {
cipher: MagicCryptCipher,
}
impl MagicCrypt {
pub fn new<S: AsRef<str>, V: AsRef<str>>(key: S, bit: SecureBit, iv: Option<V>) -> MagicCrypt {
let cipher = match bit {
SecureBit::Bit64 => MagicCryptCipher::DES64(MagicCrypt64::new(key, iv)),
SecureBit::Bit128 => MagicCryptCipher::AES128(MagicCrypt128::new(key, iv)),
SecureBit::Bit192 => MagicCryptCipher::AES192(MagicCrypt192::new(key, iv)),
SecureBit::Bit256 => MagicCryptCipher::AES256(MagicCrypt256::new(key, iv)),
};
MagicCrypt {
cipher,
}
}
}
impl MagicCryptTrait for MagicCrypt {
#[inline]
fn new<S: AsRef<str>, V: AsRef<str>>(key: S, iv: Option<V>) -> MagicCrypt {
MagicCrypt::new(key, SecureBit::default(), iv)
}
#[inline]
fn encrypt_to_bytes<T: ?Sized + AsRef<[u8]>>(&self, data: &T) -> Vec<u8> {
match &self.cipher {
MagicCryptCipher::DES64(mc) => mc.encrypt_to_bytes(data),
MagicCryptCipher::AES128(mc) => mc.encrypt_to_bytes(data),
MagicCryptCipher::AES192(mc) => mc.encrypt_to_bytes(data),
MagicCryptCipher::AES256(mc) => mc.encrypt_to_bytes(data),
}
}
#[cfg(feature = "std")]
#[inline]
fn encrypt_reader_to_bytes(&self, reader: &mut dyn Read) -> Result<Vec<u8>, MagicCryptError> {
match &self.cipher {
MagicCryptCipher::DES64(mc) => mc.encrypt_reader_to_bytes(reader),
MagicCryptCipher::AES128(mc) => mc.encrypt_reader_to_bytes(reader),
MagicCryptCipher::AES192(mc) => mc.encrypt_reader_to_bytes(reader),
MagicCryptCipher::AES256(mc) => mc.encrypt_reader_to_bytes(reader),
}
}
#[cfg(feature = "std")]
#[inline]
fn encrypt_reader_to_writer2<
N: ArrayLength<u8> + PartialDiv<U16> + IsGreaterOrEqual<U16, Output = True>,
>(
&self,
reader: &mut dyn Read,
writer: &mut dyn Write,
) -> Result<(), MagicCryptError> {
match &self.cipher {
MagicCryptCipher::DES64(mc) => mc.encrypt_reader_to_writer2::<N>(reader, writer),
MagicCryptCipher::AES128(mc) => mc.encrypt_reader_to_writer2::<N>(reader, writer),
MagicCryptCipher::AES192(mc) => mc.encrypt_reader_to_writer2::<N>(reader, writer),
MagicCryptCipher::AES256(mc) => mc.encrypt_reader_to_writer2::<N>(reader, writer),
}
}
#[inline]
fn decrypt_bytes_to_bytes<T: ?Sized + AsRef<[u8]>>(
&self,
bytes: &T,
) -> Result<Vec<u8>, MagicCryptError> {
match &self.cipher {
MagicCryptCipher::DES64(mc) => mc.decrypt_bytes_to_bytes(bytes),
MagicCryptCipher::AES128(mc) => mc.decrypt_bytes_to_bytes(bytes),
MagicCryptCipher::AES192(mc) => mc.decrypt_bytes_to_bytes(bytes),
MagicCryptCipher::AES256(mc) => mc.decrypt_bytes_to_bytes(bytes),
}
}
#[cfg(feature = "std")]
#[inline]
fn decrypt_reader_to_bytes(&self, reader: &mut dyn Read) -> Result<Vec<u8>, MagicCryptError> {
match &self.cipher {
MagicCryptCipher::DES64(mc) => mc.decrypt_reader_to_bytes(reader),
MagicCryptCipher::AES128(mc) => mc.decrypt_reader_to_bytes(reader),
MagicCryptCipher::AES192(mc) => mc.decrypt_reader_to_bytes(reader),
MagicCryptCipher::AES256(mc) => mc.decrypt_reader_to_bytes(reader),
}
}
#[cfg(feature = "std")]
#[inline]
fn decrypt_reader_to_writer2<
N: ArrayLength<u8> + PartialDiv<U16> + IsGreaterOrEqual<U16, Output = True> + Add<B1>,
>(
&self,
reader: &mut dyn Read,
writer: &mut dyn Write,
) -> Result<(), MagicCryptError>
where
<N as Add<B1>>::Output: ArrayLength<u8>, {
match &self.cipher {
MagicCryptCipher::DES64(mc) => mc.decrypt_reader_to_writer(reader, writer),
MagicCryptCipher::AES128(mc) => mc.decrypt_reader_to_writer(reader, writer),
MagicCryptCipher::AES192(mc) => mc.decrypt_reader_to_writer(reader, writer),
MagicCryptCipher::AES256(mc) => mc.decrypt_reader_to_writer(reader, writer),
}
}
}