forked from bozhu/AES-Python
-
Notifications
You must be signed in to change notification settings - Fork 94
/
tests.py
410 lines (328 loc) · 16 KB
/
tests.py
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
import unittest
from aes import AES, encrypt, decrypt
class TestBlock(unittest.TestCase):
"""
Tests raw AES-128 block operations.
"""
def setUp(self):
self.aes = AES(b'\x00' * 16)
def test_success(self):
""" Should be able to encrypt and decrypt block messages. """
message = b'\x01' * 16
ciphertext = self.aes.encrypt_block(message)
self.assertEqual(self.aes.decrypt_block(ciphertext), message)
message = b'a secret message'
ciphertext = self.aes.encrypt_block(message)
self.assertEqual(self.aes.decrypt_block(ciphertext), message)
def test_bad_key(self):
""" Raw AES requires keys of an exact size. """
with self.assertRaises(AssertionError):
AES(b'short key')
with self.assertRaises(AssertionError):
AES(b'long key' * 10)
def test_expected_value(self):
"""
Tests taken from the NIST document, Appendix B:
http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
"""
message = b'\x32\x43\xF6\xA8\x88\x5A\x30\x8D\x31\x31\x98\xA2\xE0\x37\x07\x34'
key = b'\x2B\x7E\x15\x16\x28\xAE\xD2\xA6\xAB\xF7\x15\x88\x09\xCF\x4F\x3C'
ciphertext = AES(bytes(key)).encrypt_block(bytes(message))
self.assertEqual(ciphertext, b'\x39\x25\x84\x1D\x02\xDC\x09\xFB\xDC\x11\x85\x97\x19\x6A\x0B\x32')
class TestKeySizes(unittest.TestCase):
"""
Tests encrypt and decryption using 192- and 256-bit keys.
"""
def test_192(self):
aes = AES(b'P' * 24)
message = b'M' * 16
ciphertext = aes.encrypt_block(message)
self.assertEqual(aes.decrypt_block(ciphertext), message)
def test_256(self):
aes = AES(b'P' * 32)
message = b'M' * 16
ciphertext = aes.encrypt_block(message)
self.assertEqual(aes.decrypt_block(ciphertext), message)
def test_expected_values192(self):
message = b'\x00\x11\x22\x33\x44\x55\x66\x77\x88\x99\xAA\xBB\xCC\xDD\xEE\xFF'
aes = AES(b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17')
ciphertext = aes.encrypt_block(message)
self.assertEqual(ciphertext, b'\xdd\xa9\x7c\xa4\x86\x4c\xdf\xe0\x6e\xaf\x70\xa0\xec\x0d\x71\x91')
self.assertEqual(aes.decrypt_block(ciphertext), message)
def test_expected_values256(self):
message = b'\x00\x11\x22\x33\x44\x55\x66\x77\x88\x99\xAA\xBB\xCC\xDD\xEE\xFF'
aes = AES(b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f')
ciphertext = aes.encrypt_block(message)
self.assertEqual(ciphertext, b'\x8e\xa2\xb7\xca\x51\x67\x45\xbf\xea\xfc\x49\x90\x4b\x49\x60\x89')
self.assertEqual(aes.decrypt_block(ciphertext), message)
class TestCbc(unittest.TestCase):
"""
Tests AES-128 in CBC mode.
"""
def setUp(self):
self.aes = AES(b'\x00' * 16)
self.iv = b'\x01' * 16
self.message = b'my message'
def test_single_block(self):
""" Should be able to encrypt and decrypt single block messages. """
ciphertext = self.aes.encrypt_cbc(self.message, self.iv)
self.assertEqual(self.aes.decrypt_cbc(ciphertext, self.iv), self.message)
# Since len(message) < block size, padding won't create a new block.
self.assertEqual(len(ciphertext), 16)
def test_wrong_iv(self):
""" CBC mode should verify the IVs are of correct length."""
with self.assertRaises(AssertionError):
self.aes.encrypt_cbc(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.encrypt_cbc(self.message, b'long iv' * 16)
with self.assertRaises(AssertionError):
self.aes.decrypt_cbc(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.decrypt_cbc(self.message, b'long iv' * 16)
def test_different_iv(self):
""" Different IVs should generate different ciphertexts. """
iv2 = b'\x02' * 16
ciphertext1 = self.aes.encrypt_cbc(self.message, self.iv)
ciphertext2 = self.aes.encrypt_cbc(self.message, iv2)
self.assertNotEqual(ciphertext1, ciphertext2)
plaintext1 = self.aes.decrypt_cbc(ciphertext1, self.iv)
plaintext2 = self.aes.decrypt_cbc(ciphertext2, iv2)
self.assertEqual(plaintext1, plaintext2)
self.assertEqual(plaintext1, self.message)
def test_whole_block_padding(self):
""" When len(message) == block size, padding will add a block. """
block_message = b'M' * 16
ciphertext = self.aes.encrypt_cbc(block_message, self.iv)
self.assertEqual(len(ciphertext), 32)
self.assertEqual(self.aes.decrypt_cbc(ciphertext, self.iv), block_message)
def test_long_message(self):
""" CBC should allow for messages longer than a single block. """
long_message = b'M' * 100
ciphertext = self.aes.encrypt_cbc(long_message, self.iv)
self.assertEqual(self.aes.decrypt_cbc(ciphertext, self.iv), long_message)
class TestPcbc(unittest.TestCase):
"""
Tests AES-128 in CBC mode.
"""
def setUp(self):
self.aes = AES(b'\x00' * 16)
self.iv = b'\x01' * 16
self.message = b'my message'
def test_single_block(self):
""" Should be able to encrypt and decrypt single block messages. """
ciphertext = self.aes.encrypt_pcbc(self.message, self.iv)
self.assertEqual(self.aes.decrypt_pcbc(ciphertext, self.iv), self.message)
# Since len(message) < block size, padding won't create a new block.
self.assertEqual(len(ciphertext), 16)
def test_wrong_iv(self):
""" CBC mode should verify the IVs are of correct length."""
with self.assertRaises(AssertionError):
self.aes.encrypt_pcbc(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.encrypt_pcbc(self.message, b'long iv' * 16)
with self.assertRaises(AssertionError):
self.aes.decrypt_pcbc(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.decrypt_pcbc(self.message, b'long iv' * 16)
def test_different_iv(self):
""" Different IVs should generate different ciphertexts. """
iv2 = b'\x02' * 16
ciphertext1 = self.aes.encrypt_pcbc(self.message, self.iv)
ciphertext2 = self.aes.encrypt_pcbc(self.message, iv2)
self.assertNotEqual(ciphertext1, ciphertext2)
plaintext1 = self.aes.decrypt_pcbc(ciphertext1, self.iv)
plaintext2 = self.aes.decrypt_pcbc(ciphertext2, iv2)
self.assertEqual(plaintext1, plaintext2)
self.assertEqual(plaintext1, self.message)
def test_whole_block_padding(self):
""" When len(message) == block size, padding will add a block. """
block_message = b'M' * 16
ciphertext = self.aes.encrypt_pcbc(block_message, self.iv)
self.assertEqual(len(ciphertext), 32)
self.assertEqual(self.aes.decrypt_pcbc(ciphertext, self.iv), block_message)
def test_long_message(self):
""" CBC should allow for messages longer than a single block. """
long_message = b'M' * 100
ciphertext = self.aes.encrypt_pcbc(long_message, self.iv)
self.assertEqual(self.aes.decrypt_pcbc(ciphertext, self.iv), long_message)
class TestCfb(unittest.TestCase):
"""
Tests AES-128 in CBC mode.
"""
def setUp(self):
self.aes = AES(b'\x00' * 16)
self.iv = b'\x01' * 16
self.message = b'my message'
def test_single_block(self):
""" Should be able to encrypt and decrypt single block messages. """
ciphertext = self.aes.encrypt_cfb(self.message, self.iv)
self.assertEqual(self.aes.decrypt_cfb(ciphertext, self.iv), self.message)
self.assertEqual(len(ciphertext), len(self.message))
def test_wrong_iv(self):
""" CBC mode should verify the IVs are of correct length."""
with self.assertRaises(AssertionError):
self.aes.encrypt_cfb(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.encrypt_cfb(self.message, b'long iv' * 16)
with self.assertRaises(AssertionError):
self.aes.decrypt_cfb(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.decrypt_cfb(self.message, b'long iv' * 16)
def test_different_iv(self):
""" Different IVs should generate different ciphertexts. """
iv2 = b'\x02' * 16
ciphertext1 = self.aes.encrypt_cfb(self.message, self.iv)
ciphertext2 = self.aes.encrypt_cfb(self.message, iv2)
self.assertNotEqual(ciphertext1, ciphertext2)
plaintext1 = self.aes.decrypt_cfb(ciphertext1, self.iv)
plaintext2 = self.aes.decrypt_cfb(ciphertext2, iv2)
self.assertEqual(plaintext1, plaintext2)
self.assertEqual(plaintext1, self.message)
def test_whole_block_padding(self):
""" When len(message) == block size, padding will add a block. """
block_message = b'M' * 16
ciphertext = self.aes.encrypt_cfb(block_message, self.iv)
self.assertEqual(len(ciphertext), len(block_message))
self.assertEqual(self.aes.decrypt_cfb(ciphertext, self.iv), block_message)
def test_long_message(self):
""" CBC should allow for messages longer than a single block. """
long_message = b'M' * 100
ciphertext = self.aes.encrypt_cfb(long_message, self.iv)
self.assertEqual(self.aes.decrypt_cfb(ciphertext, self.iv), long_message)
class TestOfb(unittest.TestCase):
"""
Tests AES-128 in CBC mode.
"""
def setUp(self):
self.aes = AES(b'\x00' * 16)
self.iv = b'\x01' * 16
self.message = b'my message'
def test_single_block(self):
""" Should be able to encrypt and decrypt single block messages. """
ciphertext = self.aes.encrypt_ofb(self.message, self.iv)
self.assertEqual(self.aes.decrypt_ofb(ciphertext, self.iv), self.message)
self.assertEqual(len(ciphertext), len(self.message))
def test_wrong_iv(self):
""" CBC mode should verify the IVs are of correct length."""
with self.assertRaises(AssertionError):
self.aes.encrypt_ofb(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.encrypt_ofb(self.message, b'long iv' * 16)
with self.assertRaises(AssertionError):
self.aes.decrypt_ofb(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.decrypt_ofb(self.message, b'long iv' * 16)
def test_different_iv(self):
""" Different IVs should generate different ciphertexts. """
iv2 = b'\x02' * 16
ciphertext1 = self.aes.encrypt_ofb(self.message, self.iv)
ciphertext2 = self.aes.encrypt_ofb(self.message, iv2)
self.assertNotEqual(ciphertext1, ciphertext2)
plaintext1 = self.aes.decrypt_ofb(ciphertext1, self.iv)
plaintext2 = self.aes.decrypt_ofb(ciphertext2, iv2)
self.assertEqual(plaintext1, plaintext2)
self.assertEqual(plaintext1, self.message)
def test_whole_block_padding(self):
""" When len(message) == block size, padding will add a block. """
block_message = b'M' * 16
ciphertext = self.aes.encrypt_ofb(block_message, self.iv)
self.assertEqual(len(ciphertext), len(block_message))
self.assertEqual(self.aes.decrypt_ofb(ciphertext, self.iv), block_message)
def test_long_message(self):
""" CBC should allow for messages longer than a single block. """
long_message = b'M' * 100
ciphertext = self.aes.encrypt_ofb(long_message, self.iv)
self.assertEqual(self.aes.decrypt_ofb(ciphertext, self.iv), long_message)
class TestCtr(unittest.TestCase):
"""
Tests AES-128 in CBC mode.
"""
def setUp(self):
self.aes = AES(b'\x00' * 16)
self.iv = b'\x01' * 16
self.message = b'my message'
def test_single_block(self):
""" Should be able to encrypt and decrypt single block messages. """
ciphertext = self.aes.encrypt_ctr(self.message, self.iv)
self.assertEqual(self.aes.decrypt_ctr(ciphertext, self.iv), self.message)
# Stream mode ciphers don't increase message size.
self.assertEqual(len(ciphertext), len(self.message))
def test_wrong_iv(self):
""" CBC mode should verify the IVs are of correct length."""
with self.assertRaises(AssertionError):
self.aes.encrypt_ctr(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.encrypt_ctr(self.message, b'long iv' * 16)
with self.assertRaises(AssertionError):
self.aes.decrypt_ctr(self.message, b'short iv')
with self.assertRaises(AssertionError):
self.aes.decrypt_ctr(self.message, b'long iv' * 16)
def test_different_iv(self):
""" Different IVs should generate different ciphertexts. """
iv2 = b'\x02' * 16
ciphertext1 = self.aes.encrypt_ctr(self.message, self.iv)
ciphertext2 = self.aes.encrypt_ctr(self.message, iv2)
self.assertNotEqual(ciphertext1, ciphertext2)
plaintext1 = self.aes.decrypt_ctr(ciphertext1, self.iv)
plaintext2 = self.aes.decrypt_ctr(ciphertext2, iv2)
self.assertEqual(plaintext1, plaintext2)
self.assertEqual(plaintext1, self.message)
def test_whole_block_padding(self):
block_message = b'M' * 16
ciphertext = self.aes.encrypt_ctr(block_message, self.iv)
self.assertEqual(len(ciphertext), len(block_message))
self.assertEqual(self.aes.decrypt_ctr(ciphertext, self.iv), block_message)
def test_long_message(self):
long_message = b'M' * 100
ciphertext = self.aes.encrypt_ctr(long_message, self.iv)
self.assertEqual(self.aes.decrypt_ctr(ciphertext, self.iv), long_message)
class TestFunctions(unittest.TestCase):
"""
Tests the module functions `encrypt` and `decrypt`, as well as basic
security features like randomization and integrity.
"""
def setUp(self):
self.key = b'master key'
self.message = b'secret message'
# Lower workload then default to speed up tests.
self.encrypt = lambda key, ciphertext: encrypt(key, ciphertext, 10000)
self.decrypt = lambda key, ciphertext: decrypt(key, ciphertext, 10000)
def test_success(self):
""" Should be able to encrypt and decrypt simple messages. """
ciphertext = self.encrypt(self.key, self.message)
self.assertEqual(self.decrypt(self.key, ciphertext), self.message)
def test_long_message(self):
""" Should be able to encrypt and decrypt longer messages. """
ciphertext = self.encrypt(self.key, self.message * 100)
self.assertEqual(self.decrypt(self.key, ciphertext), self.message * 100)
def test_sanity(self):
"""
Ensures we are not doing anything blatantly stupid in the
ciphertext.
"""
ciphertext = self.encrypt(self.key, self.message)
self.assertNotIn(self.key, ciphertext)
self.assertNotIn(self.message, ciphertext)
def test_randomization(self):
""" Tests salt randomization. """
ciphertext1 = self.encrypt(self.key, self.message)
ciphertext2 = self.encrypt(self.key, self.message)
self.assertNotEqual(ciphertext1, ciphertext2)
def test_integrity(self):
""" Tests integrity verifications. """
with self.assertRaises(AssertionError):
ciphertext = self.encrypt(self.key, self.message)
ciphertext += b'a'
self.decrypt(self.key, ciphertext)
with self.assertRaises(AssertionError):
ciphertext = self.encrypt(self.key, self.message)
ciphertext = ciphertext[:-1]
self.decrypt(self.key, ciphertext)
with self.assertRaises(AssertionError):
ciphertext = self.encrypt(self.key, self.message)
ciphertext = ciphertext[:-1] + b'a'
self.decrypt(self.key, ciphertext)
def run():
unittest.main()
if __name__ == '__main__':
run()