blob: 896bbe9ab79838930654d1732644f07658a26401 [file] [log] [blame]
Christian Heimes2f050c72018-01-27 09:53:43 +01001import binascii
Christian Heimes217f5c42013-11-24 23:14:16 +01002import functools
Guido van Rossumf1669942001-09-11 15:54:16 +00003import hmac
Guido van Rossuma19f80c2007-11-06 20:51:31 +00004import hashlib
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +00005import unittest
Christian Heimes2f050c72018-01-27 09:53:43 +01006import unittest.mock
Guido van Rossuma19f80c2007-11-06 20:51:31 +00007import warnings
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +00008
Christian Heimes217f5c42013-11-24 23:14:16 +01009
10def ignore_warning(func):
11 @functools.wraps(func)
12 def wrapper(*args, **kwargs):
13 with warnings.catch_warnings():
14 warnings.filterwarnings("ignore",
Matthias Bussonnier8bb0b5b2018-05-22 15:55:31 -070015 category=DeprecationWarning)
Christian Heimes217f5c42013-11-24 23:14:16 +010016 return func(*args, **kwargs)
17 return wrapper
18
19
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +000020class TestVectorsTestCase(unittest.TestCase):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +000021
Jeremy Hylton893801e2003-05-27 16:16:41 +000022 def test_md5_vectors(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +000023 # Test the HMAC module against test vectors from the RFC.
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +000024
25 def md5test(key, data, digest):
Christian Heimes634919a2013-11-20 17:23:06 +010026 h = hmac.HMAC(key, data, digestmod=hashlib.md5)
27 self.assertEqual(h.hexdigest().upper(), digest.upper())
Christian Heimes2f050c72018-01-27 09:53:43 +010028 self.assertEqual(h.digest(), binascii.unhexlify(digest))
Christian Heimesc4ab1102013-11-20 17:35:06 +010029 self.assertEqual(h.name, "hmac-md5")
30 self.assertEqual(h.digest_size, 16)
31 self.assertEqual(h.block_size, 64)
32
Christian Heimes634919a2013-11-20 17:23:06 +010033 h = hmac.HMAC(key, data, digestmod='md5')
Jeremy Hylton893801e2003-05-27 16:16:41 +000034 self.assertEqual(h.hexdigest().upper(), digest.upper())
Christian Heimes2f050c72018-01-27 09:53:43 +010035 self.assertEqual(h.digest(), binascii.unhexlify(digest))
Christian Heimesc4ab1102013-11-20 17:35:06 +010036 self.assertEqual(h.name, "hmac-md5")
37 self.assertEqual(h.digest_size, 16)
38 self.assertEqual(h.block_size, 64)
39
Christian Heimes2f050c72018-01-27 09:53:43 +010040 self.assertEqual(
41 hmac.digest(key, data, digest='md5'),
42 binascii.unhexlify(digest)
43 )
44 with unittest.mock.patch('hmac._openssl_md_meths', {}):
45 self.assertEqual(
46 hmac.digest(key, data, digest='md5'),
47 binascii.unhexlify(digest)
48 )
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +000049
Guido van Rossum3f429082007-07-10 13:35:52 +000050 md5test(b"\x0b" * 16,
51 b"Hi There",
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +000052 "9294727A3638BB1C13F48EF8158BFC9D")
53
Guido van Rossum3f429082007-07-10 13:35:52 +000054 md5test(b"Jefe",
55 b"what do ya want for nothing?",
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +000056 "750c783e6ab0b503eaa86e310a5db738")
57
Guido van Rossum3f429082007-07-10 13:35:52 +000058 md5test(b"\xaa" * 16,
59 b"\xdd" * 50,
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +000060 "56be34521d144c88dbb8c733f0e8b3f6")
61
Guido van Rossum39478e82007-08-27 17:23:59 +000062 md5test(bytes(range(1, 26)),
Guido van Rossum3f429082007-07-10 13:35:52 +000063 b"\xcd" * 50,
Jeremy Hylton893801e2003-05-27 16:16:41 +000064 "697eaf0aca3a3aea3a75164746ffaa79")
65
Guido van Rossum39478e82007-08-27 17:23:59 +000066 md5test(b"\x0C" * 16,
67 b"Test With Truncation",
Jeremy Hylton893801e2003-05-27 16:16:41 +000068 "56461ef2342edc00f9bab995690efd4c")
69
Guido van Rossum3f429082007-07-10 13:35:52 +000070 md5test(b"\xaa" * 80,
Guido van Rossum39478e82007-08-27 17:23:59 +000071 b"Test Using Larger Than Block-Size Key - Hash Key First",
Jeremy Hylton893801e2003-05-27 16:16:41 +000072 "6b1ab7fe4bd7bf8f0b62e6ce61b9d0cd")
73
Guido van Rossum3f429082007-07-10 13:35:52 +000074 md5test(b"\xaa" * 80,
Guido van Rossum39478e82007-08-27 17:23:59 +000075 (b"Test Using Larger Than Block-Size Key "
76 b"and Larger Than One Block-Size Data"),
Jeremy Hylton893801e2003-05-27 16:16:41 +000077 "6f630fad67cda0ee1fb1f562db3aa53e")
78
79 def test_sha_vectors(self):
80 def shatest(key, data, digest):
Guido van Rossuma19f80c2007-11-06 20:51:31 +000081 h = hmac.HMAC(key, data, digestmod=hashlib.sha1)
Jeremy Hylton893801e2003-05-27 16:16:41 +000082 self.assertEqual(h.hexdigest().upper(), digest.upper())
Christian Heimes2f050c72018-01-27 09:53:43 +010083 self.assertEqual(h.digest(), binascii.unhexlify(digest))
Christian Heimesc4ab1102013-11-20 17:35:06 +010084 self.assertEqual(h.name, "hmac-sha1")
85 self.assertEqual(h.digest_size, 20)
86 self.assertEqual(h.block_size, 64)
87
Christian Heimes634919a2013-11-20 17:23:06 +010088 h = hmac.HMAC(key, data, digestmod='sha1')
89 self.assertEqual(h.hexdigest().upper(), digest.upper())
Christian Heimes2f050c72018-01-27 09:53:43 +010090 self.assertEqual(h.digest(), binascii.unhexlify(digest))
Christian Heimesc4ab1102013-11-20 17:35:06 +010091 self.assertEqual(h.name, "hmac-sha1")
92 self.assertEqual(h.digest_size, 20)
93 self.assertEqual(h.block_size, 64)
Christian Heimes634919a2013-11-20 17:23:06 +010094
Christian Heimes2f050c72018-01-27 09:53:43 +010095 self.assertEqual(
96 hmac.digest(key, data, digest='sha1'),
97 binascii.unhexlify(digest)
98 )
99
Jeremy Hylton893801e2003-05-27 16:16:41 +0000100
Guido van Rossum3f429082007-07-10 13:35:52 +0000101 shatest(b"\x0b" * 20,
102 b"Hi There",
Jeremy Hylton893801e2003-05-27 16:16:41 +0000103 "b617318655057264e28bc0b6fb378c8ef146be00")
104
Guido van Rossum3f429082007-07-10 13:35:52 +0000105 shatest(b"Jefe",
106 b"what do ya want for nothing?",
Jeremy Hylton893801e2003-05-27 16:16:41 +0000107 "effcdf6ae5eb2fa2d27416d5f184df9c259a7c79")
108
Guido van Rossum3f429082007-07-10 13:35:52 +0000109 shatest(b"\xAA" * 20,
110 b"\xDD" * 50,
Jeremy Hylton893801e2003-05-27 16:16:41 +0000111 "125d7342b9ac11cd91a39af48aa17b4f63f175d3")
112
Guido van Rossum3f429082007-07-10 13:35:52 +0000113 shatest(bytes(range(1, 26)),
114 b"\xCD" * 50,
Jeremy Hylton893801e2003-05-27 16:16:41 +0000115 "4c9007f4026250c6bc8414f9bf50c86c2d7235da")
116
Guido van Rossum39478e82007-08-27 17:23:59 +0000117 shatest(b"\x0C" * 20,
118 b"Test With Truncation",
Jeremy Hylton893801e2003-05-27 16:16:41 +0000119 "4c1a03424b55e07fe7f27be1d58bb9324a9a5a04")
120
Guido van Rossum3f429082007-07-10 13:35:52 +0000121 shatest(b"\xAA" * 80,
122 b"Test Using Larger Than Block-Size Key - Hash Key First",
Jeremy Hylton893801e2003-05-27 16:16:41 +0000123 "aa4ae5e15272d00e95705637ce8a3b55ed402112")
124
Guido van Rossum3f429082007-07-10 13:35:52 +0000125 shatest(b"\xAA" * 80,
126 (b"Test Using Larger Than Block-Size Key "
127 b"and Larger Than One Block-Size Data"),
Jeremy Hylton893801e2003-05-27 16:16:41 +0000128 "e8e99d0f45237d786d6bbaa7965c7808bbff1a91")
129
Christian Heimesc4ab1102013-11-20 17:35:06 +0100130 def _rfc4231_test_cases(self, hashfunc, hash_name, digest_size, block_size):
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000131 def hmactest(key, data, hexdigests):
Christian Heimesc4ab1102013-11-20 17:35:06 +0100132 hmac_name = "hmac-" + hash_name
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000133 h = hmac.HMAC(key, data, digestmod=hashfunc)
134 self.assertEqual(h.hexdigest().lower(), hexdigests[hashfunc])
Christian Heimesc4ab1102013-11-20 17:35:06 +0100135 self.assertEqual(h.name, hmac_name)
136 self.assertEqual(h.digest_size, digest_size)
137 self.assertEqual(h.block_size, block_size)
138
139 h = hmac.HMAC(key, data, digestmod=hash_name)
Christian Heimes634919a2013-11-20 17:23:06 +0100140 self.assertEqual(h.hexdigest().lower(), hexdigests[hashfunc])
Christian Heimesc4ab1102013-11-20 17:35:06 +0100141 self.assertEqual(h.name, hmac_name)
142 self.assertEqual(h.digest_size, digest_size)
143 self.assertEqual(h.block_size, block_size)
Christian Heimes634919a2013-11-20 17:23:06 +0100144
Christian Heimes2f050c72018-01-27 09:53:43 +0100145 self.assertEqual(
146 hmac.digest(key, data, digest=hashfunc),
147 binascii.unhexlify(hexdigests[hashfunc])
148 )
149 self.assertEqual(
150 hmac.digest(key, data, digest=hash_name),
151 binascii.unhexlify(hexdigests[hashfunc])
152 )
153
154 with unittest.mock.patch('hmac._openssl_md_meths', {}):
155 self.assertEqual(
156 hmac.digest(key, data, digest=hashfunc),
157 binascii.unhexlify(hexdigests[hashfunc])
158 )
159 self.assertEqual(
160 hmac.digest(key, data, digest=hash_name),
161 binascii.unhexlify(hexdigests[hashfunc])
162 )
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000163
164 # 4.2. Test Case 1
165 hmactest(key = b'\x0b'*20,
166 data = b'Hi There',
167 hexdigests = {
168 hashlib.sha224: '896fb1128abbdf196832107cd49df33f'
169 '47b4b1169912ba4f53684b22',
170 hashlib.sha256: 'b0344c61d8db38535ca8afceaf0bf12b'
171 '881dc200c9833da726e9376c2e32cff7',
172 hashlib.sha384: 'afd03944d84895626b0825f4ab46907f'
173 '15f9dadbe4101ec682aa034c7cebc59c'
174 'faea9ea9076ede7f4af152e8b2fa9cb6',
175 hashlib.sha512: '87aa7cdea5ef619d4ff0b4241a1d6cb0'
176 '2379f4e2ce4ec2787ad0b30545e17cde'
177 'daa833b7d6b8a702038b274eaea3f4e4'
178 'be9d914eeb61f1702e696c203a126854',
179 })
180
181 # 4.3. Test Case 2
182 hmactest(key = b'Jefe',
183 data = b'what do ya want for nothing?',
184 hexdigests = {
185 hashlib.sha224: 'a30e01098bc6dbbf45690f3a7e9e6d0f'
186 '8bbea2a39e6148008fd05e44',
187 hashlib.sha256: '5bdcc146bf60754e6a042426089575c7'
188 '5a003f089d2739839dec58b964ec3843',
189 hashlib.sha384: 'af45d2e376484031617f78d2b58a6b1b'
190 '9c7ef464f5a01b47e42ec3736322445e'
191 '8e2240ca5e69e2c78b3239ecfab21649',
192 hashlib.sha512: '164b7a7bfcf819e2e395fbe73b56e0a3'
193 '87bd64222e831fd610270cd7ea250554'
194 '9758bf75c05a994a6d034f65f8f0e6fd'
195 'caeab1a34d4a6b4b636e070a38bce737',
196 })
197
198 # 4.4. Test Case 3
199 hmactest(key = b'\xaa'*20,
200 data = b'\xdd'*50,
201 hexdigests = {
202 hashlib.sha224: '7fb3cb3588c6c1f6ffa9694d7d6ad264'
203 '9365b0c1f65d69d1ec8333ea',
204 hashlib.sha256: '773ea91e36800e46854db8ebd09181a7'
205 '2959098b3ef8c122d9635514ced565fe',
206 hashlib.sha384: '88062608d3e6ad8a0aa2ace014c8a86f'
207 '0aa635d947ac9febe83ef4e55966144b'
208 '2a5ab39dc13814b94e3ab6e101a34f27',
209 hashlib.sha512: 'fa73b0089d56a284efb0f0756c890be9'
210 'b1b5dbdd8ee81a3655f83e33b2279d39'
211 'bf3e848279a722c806b485a47e67c807'
212 'b946a337bee8942674278859e13292fb',
213 })
214
215 # 4.5. Test Case 4
216 hmactest(key = bytes(x for x in range(0x01, 0x19+1)),
217 data = b'\xcd'*50,
218 hexdigests = {
219 hashlib.sha224: '6c11506874013cac6a2abc1bb382627c'
220 'ec6a90d86efc012de7afec5a',
221 hashlib.sha256: '82558a389a443c0ea4cc819899f2083a'
222 '85f0faa3e578f8077a2e3ff46729665b',
223 hashlib.sha384: '3e8a69b7783c25851933ab6290af6ca7'
224 '7a9981480850009cc5577c6e1f573b4e'
225 '6801dd23c4a7d679ccf8a386c674cffb',
226 hashlib.sha512: 'b0ba465637458c6990e5a8c5f61d4af7'
227 'e576d97ff94b872de76f8050361ee3db'
228 'a91ca5c11aa25eb4d679275cc5788063'
229 'a5f19741120c4f2de2adebeb10a298dd',
230 })
231
232 # 4.7. Test Case 6
233 hmactest(key = b'\xaa'*131,
234 data = b'Test Using Larger Than Block-Siz'
235 b'e Key - Hash Key First',
236 hexdigests = {
237 hashlib.sha224: '95e9a0db962095adaebe9b2d6f0dbce2'
238 'd499f112f2d2b7273fa6870e',
239 hashlib.sha256: '60e431591ee0b67f0d8a26aacbf5b77f'
240 '8e0bc6213728c5140546040f0ee37f54',
241 hashlib.sha384: '4ece084485813e9088d2c63a041bc5b4'
242 '4f9ef1012a2b588f3cd11f05033ac4c6'
243 '0c2ef6ab4030fe8296248df163f44952',
244 hashlib.sha512: '80b24263c7c1a3ebb71493c1dd7be8b4'
245 '9b46d1f41b4aeec1121b013783f8f352'
246 '6b56d037e05f2598bd0fd2215d6a1e52'
247 '95e64f73f63f0aec8b915a985d786598',
248 })
249
250 # 4.8. Test Case 7
251 hmactest(key = b'\xaa'*131,
252 data = b'This is a test using a larger th'
253 b'an block-size key and a larger t'
254 b'han block-size data. The key nee'
255 b'ds to be hashed before being use'
256 b'd by the HMAC algorithm.',
257 hexdigests = {
258 hashlib.sha224: '3a854166ac5d9f023f54d517d0b39dbd'
259 '946770db9c2b95c9f6f565d1',
260 hashlib.sha256: '9b09ffa71b942fcb27635fbcd5b0e944'
261 'bfdc63644f0713938a7f51535c3a35e2',
262 hashlib.sha384: '6617178e941f020d351e2f254e8fd32c'
263 '602420feb0b8fb9adccebb82461e99c5'
264 'a678cc31e799176d3860e6110c46523e',
265 hashlib.sha512: 'e37b6a775dc87dbaa4dfa9f96e5e3ffd'
266 'debd71f8867289865df5a32d20cdc944'
267 'b6022cac3c4982b10d5eeb55c3e4de15'
268 '134676fb6de0446065c97440fa8c6a58',
269 })
270
271 def test_sha224_rfc4231(self):
Christian Heimesc4ab1102013-11-20 17:35:06 +0100272 self._rfc4231_test_cases(hashlib.sha224, 'sha224', 28, 64)
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000273
274 def test_sha256_rfc4231(self):
Christian Heimesc4ab1102013-11-20 17:35:06 +0100275 self._rfc4231_test_cases(hashlib.sha256, 'sha256', 32, 64)
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000276
277 def test_sha384_rfc4231(self):
Christian Heimesc4ab1102013-11-20 17:35:06 +0100278 self._rfc4231_test_cases(hashlib.sha384, 'sha384', 48, 128)
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000279
280 def test_sha512_rfc4231(self):
Christian Heimesc4ab1102013-11-20 17:35:06 +0100281 self._rfc4231_test_cases(hashlib.sha512, 'sha512', 64, 128)
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000282
283 def test_legacy_block_size_warnings(self):
284 class MockCrazyHash(object):
285 """Ain't no block_size attribute here."""
286 def __init__(self, *args):
287 self._x = hashlib.sha1(*args)
288 self.digest_size = self._x.digest_size
289 def update(self, v):
290 self._x.update(v)
291 def digest(self):
292 return self._x.digest()
293
Brett Cannon1cd02472008-09-09 01:52:27 +0000294 with warnings.catch_warnings():
Christian Heimese25f35e2008-03-20 10:49:03 +0000295 warnings.simplefilter('error', RuntimeWarning)
Florent Xicluna41fe6152010-04-02 18:52:12 +0000296 with self.assertRaises(RuntimeWarning):
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000297 hmac.HMAC(b'a', b'b', digestmod=MockCrazyHash)
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000298 self.fail('Expected warning about missing block_size')
299
300 MockCrazyHash.block_size = 1
Florent Xicluna41fe6152010-04-02 18:52:12 +0000301 with self.assertRaises(RuntimeWarning):
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000302 hmac.HMAC(b'a', b'b', digestmod=MockCrazyHash)
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000303 self.fail('Expected warning about small block_size')
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000304
Matthias Bussonnier51a47432018-09-10 20:10:01 +0200305 def test_with_digestmod_no_default(self):
306 with self.assertRaises(ValueError):
Christian Heimes634919a2013-11-20 17:23:06 +0100307 key = b"\x0b" * 16
308 data = b"Hi There"
Matthias Bussonnier51a47432018-09-10 20:10:01 +0200309 hmac.HMAC(key, data, digestmod=None)
Jeremy Hylton893801e2003-05-27 16:16:41 +0000310
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000311class ConstructorTestCase(unittest.TestCase):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000312
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000313 def test_normal(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000314 # Standard constructor call.
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000315 failed = 0
316 try:
Matthias Bussonnier51a47432018-09-10 20:10:01 +0200317 h = hmac.HMAC(b"key", digestmod='md5')
Christian Heimes217f5c42013-11-24 23:14:16 +0100318 except Exception:
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000319 self.fail("Standard constructor call raised exception.")
320
Antoine Pitrou24ef3e92012-06-30 17:27:56 +0200321 def test_with_str_key(self):
322 # Pass a key of type str, which is an error, because it expects a key
323 # of type bytes
324 with self.assertRaises(TypeError):
Matthias Bussonnier51a47432018-09-10 20:10:01 +0200325 h = hmac.HMAC("key", digestmod='md5')
Antoine Pitrou24ef3e92012-06-30 17:27:56 +0200326
327 def test_dot_new_with_str_key(self):
328 # Pass a key of type str, which is an error, because it expects a key
329 # of type bytes
330 with self.assertRaises(TypeError):
Matthias Bussonnier51a47432018-09-10 20:10:01 +0200331 h = hmac.new("key", digestmod='md5')
Antoine Pitrou24ef3e92012-06-30 17:27:56 +0200332
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000333 def test_withtext(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000334 # Constructor call with text.
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000335 try:
Matthias Bussonnier51a47432018-09-10 20:10:01 +0200336 h = hmac.HMAC(b"key", b"hash this!", digestmod='md5')
Christian Heimes217f5c42013-11-24 23:14:16 +0100337 except Exception:
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000338 self.fail("Constructor call with text argument raised exception.")
Christian Heimes217f5c42013-11-24 23:14:16 +0100339 self.assertEqual(h.hexdigest(), '34325b639da4cfd95735b381e28cb864')
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000340
Christian Heimes04926ae2013-07-01 13:08:42 +0200341 def test_with_bytearray(self):
342 try:
Christian Heimes217f5c42013-11-24 23:14:16 +0100343 h = hmac.HMAC(bytearray(b"key"), bytearray(b"hash this!"),
344 digestmod="md5")
345 except Exception:
Christian Heimes04926ae2013-07-01 13:08:42 +0200346 self.fail("Constructor call with bytearray arguments raised exception.")
Christian Heimes217f5c42013-11-24 23:14:16 +0100347 self.assertEqual(h.hexdigest(), '34325b639da4cfd95735b381e28cb864')
Christian Heimes04926ae2013-07-01 13:08:42 +0200348
349 def test_with_memoryview_msg(self):
350 try:
Christian Heimes217f5c42013-11-24 23:14:16 +0100351 h = hmac.HMAC(b"key", memoryview(b"hash this!"), digestmod="md5")
352 except Exception:
Christian Heimes04926ae2013-07-01 13:08:42 +0200353 self.fail("Constructor call with memoryview msg raised exception.")
Christian Heimes217f5c42013-11-24 23:14:16 +0100354 self.assertEqual(h.hexdigest(), '34325b639da4cfd95735b381e28cb864')
Christian Heimes04926ae2013-07-01 13:08:42 +0200355
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000356 def test_withmodule(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000357 # Constructor call with text and digest module.
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000358 try:
Guido van Rossuma19f80c2007-11-06 20:51:31 +0000359 h = hmac.HMAC(b"key", b"", hashlib.sha1)
Christian Heimes217f5c42013-11-24 23:14:16 +0100360 except Exception:
Guido van Rossume7ba4952007-06-06 23:52:48 +0000361 self.fail("Constructor call with hashlib.sha1 raised exception.")
Tim Peters88768482001-11-13 21:51:26 +0000362
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000363class SanityTestCase(unittest.TestCase):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000364
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000365 def test_exercise_all_methods(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000366 # Exercising all methods once.
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000367 # This must not raise any exceptions
368 try:
Christian Heimes217f5c42013-11-24 23:14:16 +0100369 h = hmac.HMAC(b"my secret key", digestmod="md5")
Guido van Rossum39478e82007-08-27 17:23:59 +0000370 h.update(b"compute the hash of this text!")
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000371 dig = h.digest()
372 dig = h.hexdigest()
373 h2 = h.copy()
Christian Heimes217f5c42013-11-24 23:14:16 +0100374 except Exception:
Neal Norwitz28bb5722002-04-01 19:00:50 +0000375 self.fail("Exception raised during normal usage of HMAC class.")
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000376
377class CopyTestCase(unittest.TestCase):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000378
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000379 def test_attributes(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000380 # Testing if attributes are of same type.
Christian Heimes217f5c42013-11-24 23:14:16 +0100381 h1 = hmac.HMAC(b"key", digestmod="md5")
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000382 h2 = h1.copy()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000383 self.assertTrue(h1.digest_cons == h2.digest_cons,
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000384 "digest constructors don't match.")
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000385 self.assertEqual(type(h1.inner), type(h2.inner),
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000386 "Types of inner don't match.")
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000387 self.assertEqual(type(h1.outer), type(h2.outer),
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000388 "Types of outer don't match.")
389
390 def test_realcopy(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000391 # Testing if the copy method created a real copy.
Christian Heimes217f5c42013-11-24 23:14:16 +0100392 h1 = hmac.HMAC(b"key", digestmod="md5")
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000393 h2 = h1.copy()
Mark Dickinsona56c4672009-01-27 18:17:45 +0000394 # Using id() in case somebody has overridden __eq__/__ne__.
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000395 self.assertTrue(id(h1) != id(h2), "No real copy of the HMAC instance.")
396 self.assertTrue(id(h1.inner) != id(h2.inner),
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000397 "No real copy of the attribute 'inner'.")
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000398 self.assertTrue(id(h1.outer) != id(h2.outer),
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000399 "No real copy of the attribute 'outer'.")
400
401 def test_equality(self):
Guido van Rossum7e8fdba2002-08-22 19:38:14 +0000402 # Testing if the copy has the same digests.
Christian Heimes217f5c42013-11-24 23:14:16 +0100403 h1 = hmac.HMAC(b"key", digestmod="md5")
Guido van Rossum39478e82007-08-27 17:23:59 +0000404 h1.update(b"some random text")
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000405 h2 = h1.copy()
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000406 self.assertEqual(h1.digest(), h2.digest(),
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000407 "Digest of copy doesn't match original digest.")
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000408 self.assertEqual(h1.hexdigest(), h2.hexdigest(),
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000409 "Hexdigest of copy doesn't match original hexdigest.")
410
Nick Coghlan807770e2012-06-15 21:14:08 +1000411class CompareDigestTestCase(unittest.TestCase):
Charles-François Natali7feb9f42012-05-13 19:53:07 +0200412
Christian Heimes6cea6552012-06-24 13:48:32 +0200413 def test_compare_digest(self):
Charles-François Natali7feb9f42012-05-13 19:53:07 +0200414 # Testing input type exception handling
415 a, b = 100, 200
Nick Coghlan807770e2012-06-15 21:14:08 +1000416 self.assertRaises(TypeError, hmac.compare_digest, a, b)
417 a, b = 100, b"foobar"
418 self.assertRaises(TypeError, hmac.compare_digest, a, b)
419 a, b = b"foobar", 200
420 self.assertRaises(TypeError, hmac.compare_digest, a, b)
Charles-François Natali7feb9f42012-05-13 19:53:07 +0200421 a, b = "foobar", b"foobar"
Nick Coghlan807770e2012-06-15 21:14:08 +1000422 self.assertRaises(TypeError, hmac.compare_digest, a, b)
423 a, b = b"foobar", "foobar"
424 self.assertRaises(TypeError, hmac.compare_digest, a, b)
Nick Coghlan807770e2012-06-15 21:14:08 +1000425
426 # Testing bytes of different lengths
427 a, b = b"foobar", b"foo"
428 self.assertFalse(hmac.compare_digest(a, b))
429 a, b = b"\xde\xad\xbe\xef", b"\xde\xad"
430 self.assertFalse(hmac.compare_digest(a, b))
431
432 # Testing bytes of same lengths, different values
433 a, b = b"foobar", b"foobaz"
434 self.assertFalse(hmac.compare_digest(a, b))
435 a, b = b"\xde\xad\xbe\xef", b"\xab\xad\x1d\xea"
436 self.assertFalse(hmac.compare_digest(a, b))
437
438 # Testing bytes of same lengths, same values
Charles-François Natali7feb9f42012-05-13 19:53:07 +0200439 a, b = b"foobar", b"foobar"
Nick Coghlan807770e2012-06-15 21:14:08 +1000440 self.assertTrue(hmac.compare_digest(a, b))
Charles-François Natali7feb9f42012-05-13 19:53:07 +0200441 a, b = b"\xde\xad\xbe\xef", b"\xde\xad\xbe\xef"
Nick Coghlan807770e2012-06-15 21:14:08 +1000442 self.assertTrue(hmac.compare_digest(a, b))
Charles-François Natali7feb9f42012-05-13 19:53:07 +0200443
Christian Heimes6cea6552012-06-24 13:48:32 +0200444 # Testing bytearrays of same lengths, same values
445 a, b = bytearray(b"foobar"), bytearray(b"foobar")
446 self.assertTrue(hmac.compare_digest(a, b))
447
448 # Testing bytearrays of diffeent lengths
449 a, b = bytearray(b"foobar"), bytearray(b"foo")
450 self.assertFalse(hmac.compare_digest(a, b))
451
452 # Testing bytearrays of same lengths, different values
453 a, b = bytearray(b"foobar"), bytearray(b"foobaz")
454 self.assertFalse(hmac.compare_digest(a, b))
455
456 # Testing byte and bytearray of same lengths, same values
457 a, b = bytearray(b"foobar"), b"foobar"
458 self.assertTrue(hmac.compare_digest(a, b))
459 self.assertTrue(hmac.compare_digest(b, a))
460
461 # Testing byte bytearray of diffeent lengths
462 a, b = bytearray(b"foobar"), b"foo"
463 self.assertFalse(hmac.compare_digest(a, b))
464 self.assertFalse(hmac.compare_digest(b, a))
465
466 # Testing byte and bytearray of same lengths, different values
467 a, b = bytearray(b"foobar"), b"foobaz"
468 self.assertFalse(hmac.compare_digest(a, b))
469 self.assertFalse(hmac.compare_digest(b, a))
470
471 # Testing str of same lengths
472 a, b = "foobar", "foobar"
473 self.assertTrue(hmac.compare_digest(a, b))
474
475 # Testing str of diffeent lengths
476 a, b = "foo", "foobar"
477 self.assertFalse(hmac.compare_digest(a, b))
478
479 # Testing bytes of same lengths, different values
480 a, b = "foobar", "foobaz"
481 self.assertFalse(hmac.compare_digest(a, b))
482
483 # Testing error cases
484 a, b = "foobar", b"foobar"
485 self.assertRaises(TypeError, hmac.compare_digest, a, b)
486 a, b = b"foobar", "foobar"
487 self.assertRaises(TypeError, hmac.compare_digest, a, b)
488 a, b = b"foobar", 1
489 self.assertRaises(TypeError, hmac.compare_digest, a, b)
490 a, b = 100, 200
491 self.assertRaises(TypeError, hmac.compare_digest, a, b)
492 a, b = "fooä", "fooä"
493 self.assertRaises(TypeError, hmac.compare_digest, a, b)
494
495 # subclasses are supported by ignore __eq__
496 class mystr(str):
497 def __eq__(self, other):
498 return False
499
500 a, b = mystr("foobar"), mystr("foobar")
501 self.assertTrue(hmac.compare_digest(a, b))
502 a, b = mystr("foobar"), "foobar"
503 self.assertTrue(hmac.compare_digest(a, b))
504 a, b = mystr("foobar"), mystr("foobaz")
505 self.assertFalse(hmac.compare_digest(a, b))
506
507 class mybytes(bytes):
508 def __eq__(self, other):
509 return False
510
511 a, b = mybytes(b"foobar"), mybytes(b"foobar")
512 self.assertTrue(hmac.compare_digest(a, b))
513 a, b = mybytes(b"foobar"), b"foobar"
514 self.assertTrue(hmac.compare_digest(a, b))
515 a, b = mybytes(b"foobar"), mybytes(b"foobaz")
516 self.assertFalse(hmac.compare_digest(a, b))
517
518
Andrew M. Kuchlingf792bba2001-11-02 21:49:59 +0000519if __name__ == "__main__":
Zachary Ware38c707e2015-04-13 15:00:43 -0500520 unittest.main()