blob: 44eed78a9b468495bfa5e70bad4b26bbeac3cdec [file] [log] [blame]
Gregory P. Smithf21a5f72005-08-21 18:45:59 +00001# Test hashlib module
2#
3# $Id$
4#
Benjamin Peterson46a99002010-01-09 18:45:30 +00005# Copyright (C) 2005-2010 Gregory P. Smith (greg@krypto.org)
Gregory P. Smithf21a5f72005-08-21 18:45:59 +00006# Licensed to PSF under a Contributor Agreement.
7#
8
Benjamin Petersona28e7022010-01-09 18:53:06 +00009import array
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000010import hashlib
Benjamin Petersona28e7022010-01-09 18:53:06 +000011import itertools
Gregory P. Smithcd54e542010-01-03 00:29:15 +000012import sys
Gregory P. Smith3f61d612009-05-04 00:45:33 +000013try:
14 import threading
15except ImportError:
16 threading = None
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000017import unittest
Gregory P. Smithcd54e542010-01-03 00:29:15 +000018import warnings
Benjamin Petersonee8712c2008-05-20 21:35:26 +000019from test import support
Benjamin Peterson78cb4912008-09-24 22:53:33 +000020from test.support import _4G, precisionbigmemtest
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000021
Gregory P. Smithcd54e542010-01-03 00:29:15 +000022# Were we compiled --with-pydebug or with #define Py_DEBUG?
23COMPILED_WITH_PYDEBUG = hasattr(sys, 'gettotalrefcount')
24
25
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000026def hexstr(s):
Guido van Rossum5ed033b2007-07-09 14:29:40 +000027 assert isinstance(s, bytes), repr(s)
Guido van Rossum558ca842007-07-10 20:31:05 +000028 h = "0123456789abcdef"
29 r = ''
Guido van Rossum5ed033b2007-07-09 14:29:40 +000030 for i in s:
Guido van Rossum558ca842007-07-10 20:31:05 +000031 r += h[(i >> 4) & 0xF] + h[i & 0xF]
Gregory P. Smithf21a5f72005-08-21 18:45:59 +000032 return r
33
34
35class HashLibTestCase(unittest.TestCase):
36 supported_hash_names = ( 'md5', 'MD5', 'sha1', 'SHA1',
37 'sha224', 'SHA224', 'sha256', 'SHA256',
38 'sha384', 'SHA384', 'sha512', 'SHA512' )
39
Gregory P. Smithcd54e542010-01-03 00:29:15 +000040 _warn_on_extension_import = COMPILED_WITH_PYDEBUG
41
42 def _conditional_import_module(self, module_name):
43 """Import a module and return a reference to it or None on failure."""
44 try:
45 exec('import '+module_name)
46 except ImportError as error:
47 if self._warn_on_extension_import:
48 warnings.warn('Did a C extension fail to compile? %s' % error)
49 return locals().get(module_name)
50
51 def __init__(self, *args, **kwargs):
52 algorithms = set()
53 for algorithm in self.supported_hash_names:
54 algorithms.add(algorithm.lower())
55 self.constructors_to_test = {}
56 for algorithm in algorithms:
57 self.constructors_to_test[algorithm] = set()
58
59 # For each algorithm, test the direct constructor and the use
60 # of hashlib.new given the algorithm name.
61 for algorithm, constructors in self.constructors_to_test.items():
62 constructors.add(getattr(hashlib, algorithm))
63 def _test_algorithm_via_hashlib_new(data=None, _alg=algorithm):
64 if data is None:
65 return hashlib.new(_alg)
66 return hashlib.new(_alg, data)
67 constructors.add(_test_algorithm_via_hashlib_new)
68
69 _hashlib = self._conditional_import_module('_hashlib')
70 if _hashlib:
71 # These two algorithms should always be present when this module
72 # is compiled. If not, something was compiled wrong.
73 assert hasattr(_hashlib, 'openssl_md5')
74 assert hasattr(_hashlib, 'openssl_sha1')
75 for algorithm, constructors in self.constructors_to_test.items():
76 constructor = getattr(_hashlib, 'openssl_'+algorithm, None)
77 if constructor:
78 constructors.add(constructor)
79
80 _md5 = self._conditional_import_module('_md5')
81 if _md5:
Gregory P. Smithb04ded42010-01-03 00:38:10 +000082 self.constructors_to_test['md5'].add(_md5.md5)
83 _sha1 = self._conditional_import_module('_sha1')
84 if _sha1:
85 self.constructors_to_test['sha1'].add(_sha1.sha1)
Gregory P. Smithcd54e542010-01-03 00:29:15 +000086 _sha256 = self._conditional_import_module('_sha256')
87 if _sha256:
88 self.constructors_to_test['sha224'].add(_sha256.sha224)
89 self.constructors_to_test['sha256'].add(_sha256.sha256)
90 _sha512 = self._conditional_import_module('_sha512')
91 if _sha512:
92 self.constructors_to_test['sha384'].add(_sha512.sha384)
93 self.constructors_to_test['sha512'].add(_sha512.sha512)
94
95 super(HashLibTestCase, self).__init__(*args, **kwargs)
96
Benjamin Petersona28e7022010-01-09 18:53:06 +000097 def test_hash_array(self):
98 a = array.array("b", range(10))
99 constructors = self.constructors_to_test.values()
100 for cons in itertools.chain.from_iterable(constructors):
101 c = cons(a)
102 c.hexdigest()
103
Gregory P. Smith86508cc2010-03-01 02:05:26 +0000104 def test_algorithms_attribute(self):
105 self.assertEqual(hashlib.algorithms,
106 tuple(_algo for _algo in self.supported_hash_names
107 if _algo.islower()))
108
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000109 def test_unknown_hash(self):
110 try:
111 hashlib.new('spam spam spam spam spam')
112 except ValueError:
113 pass
114 else:
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000115 self.assertTrue(0 == "hashlib didn't reject bogus hash name")
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000116
117 def test_hexdigest(self):
118 for name in self.supported_hash_names:
119 h = hashlib.new(name)
Guido van Rossum5ed033b2007-07-09 14:29:40 +0000120 assert isinstance(h.digest(), bytes), name
121 self.assertEqual(hexstr(h.digest()), h.hexdigest())
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000122
123
124 def test_large_update(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000125 aas = b'a' * 128
126 bees = b'b' * 127
127 cees = b'c' * 126
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000128
129 for name in self.supported_hash_names:
130 m1 = hashlib.new(name)
131 m1.update(aas)
132 m1.update(bees)
133 m1.update(cees)
134
135 m2 = hashlib.new(name)
136 m2.update(aas + bees + cees)
137 self.assertEqual(m1.digest(), m2.digest())
138
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000139 def check(self, name, data, digest):
Gregory P. Smithcd54e542010-01-03 00:29:15 +0000140 constructors = self.constructors_to_test[name]
141 # 2 is for hashlib.name(...) and hashlib.new(name, ...)
142 self.assertGreaterEqual(len(constructors), 2)
143 for hash_object_constructor in constructors:
144 computed = hash_object_constructor(data).hexdigest()
145 self.assertEqual(
146 computed, digest,
147 "Hash algorithm %s constructed using %s returned hexdigest"
148 " %r for %d byte input data that should have hashed to %r."
149 % (name, hash_object_constructor,
150 computed, len(data), digest))
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000151
Gregory P. Smith365a1862009-02-12 07:35:29 +0000152 def check_no_unicode(self, algorithm_name):
153 # Unicode objects are not allowed as input.
Gregory P. Smithcd54e542010-01-03 00:29:15 +0000154 constructors = self.constructors_to_test[algorithm_name]
155 for hash_object_constructor in constructors:
156 self.assertRaises(TypeError, hash_object_constructor, 'spam')
Gregory P. Smith365a1862009-02-12 07:35:29 +0000157
158 def test_no_unicode(self):
159 self.check_no_unicode('md5')
160 self.check_no_unicode('sha1')
161 self.check_no_unicode('sha224')
162 self.check_no_unicode('sha256')
163 self.check_no_unicode('sha384')
164 self.check_no_unicode('sha512')
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000165
166 def test_case_md5_0(self):
Guido van Rossum558ca842007-07-10 20:31:05 +0000167 self.check('md5', b'', 'd41d8cd98f00b204e9800998ecf8427e')
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000168
169 def test_case_md5_1(self):
Guido van Rossum558ca842007-07-10 20:31:05 +0000170 self.check('md5', b'abc', '900150983cd24fb0d6963f7d28e17f72')
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000171
172 def test_case_md5_2(self):
Guido van Rossum5ed033b2007-07-09 14:29:40 +0000173 self.check('md5',
174 b'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
Guido van Rossum558ca842007-07-10 20:31:05 +0000175 'd174ab98d277d9f5a5611c2c9f419d9f')
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000176
Benjamin Peterson78cb4912008-09-24 22:53:33 +0000177 @precisionbigmemtest(size=_4G + 5, memuse=1)
178 def test_case_md5_huge(self, size):
179 if size == _4G + 5:
180 try:
181 self.check('md5', 'A'*size, 'c9af2dff37468ce5dfee8f2cfc0a9c6d')
182 except OverflowError:
183 pass # 32-bit arch
184
185 @precisionbigmemtest(size=_4G - 1, memuse=1)
186 def test_case_md5_uintmax(self, size):
187 if size == _4G - 1:
188 try:
189 self.check('md5', 'A'*size, '28138d306ff1b8281f1a9067e1a1a2b3')
190 except OverflowError:
191 pass # 32-bit arch
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000192
193 # use the three examples from Federal Information Processing Standards
194 # Publication 180-1, Secure Hash Standard, 1995 April 17
195 # http://www.itl.nist.gov/div897/pubs/fip180-1.htm
196
197 def test_case_sha1_0(self):
Guido van Rossum5ed033b2007-07-09 14:29:40 +0000198 self.check('sha1', b"",
Guido van Rossum558ca842007-07-10 20:31:05 +0000199 "da39a3ee5e6b4b0d3255bfef95601890afd80709")
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000200
201 def test_case_sha1_1(self):
Guido van Rossum5ed033b2007-07-09 14:29:40 +0000202 self.check('sha1', b"abc",
Guido van Rossum558ca842007-07-10 20:31:05 +0000203 "a9993e364706816aba3e25717850c26c9cd0d89d")
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000204
205 def test_case_sha1_2(self):
Guido van Rossum5ed033b2007-07-09 14:29:40 +0000206 self.check('sha1',
207 b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
Guido van Rossum558ca842007-07-10 20:31:05 +0000208 "84983e441c3bd26ebaae4aa1f95129e5e54670f1")
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000209
210 def test_case_sha1_3(self):
Guido van Rossum5ed033b2007-07-09 14:29:40 +0000211 self.check('sha1', b"a" * 1000000,
Guido van Rossum558ca842007-07-10 20:31:05 +0000212 "34aa973cd4c4daa4f61eeb2bdbad27316534016f")
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000213
214
215 # use the examples from Federal Information Processing Standards
216 # Publication 180-2, Secure Hash Standard, 2002 August 1
217 # http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf
218
219 def test_case_sha224_0(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000220 self.check('sha224', b"",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000221 "d14a028c2a3a2bc9476102bb288234c415a2b01f828ea62ac5b3e42f")
222
223 def test_case_sha224_1(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000224 self.check('sha224', b"abc",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000225 "23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7")
226
227 def test_case_sha224_2(self):
228 self.check('sha224',
Guido van Rossume22905a2007-08-27 23:09:25 +0000229 b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000230 "75388b16512776cc5dba5da1fd890150b0c6455cb4f58b1952522525")
231
232 def test_case_sha224_3(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000233 self.check('sha224', b"a" * 1000000,
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000234 "20794655980c91d8bbb4c1ea97618a4bf03f42581948b2ee4ee7ad67")
235
236
237 def test_case_sha256_0(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000238 self.check('sha256', b"",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000239 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855")
240
241 def test_case_sha256_1(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000242 self.check('sha256', b"abc",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000243 "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad")
244
245 def test_case_sha256_2(self):
246 self.check('sha256',
Guido van Rossume22905a2007-08-27 23:09:25 +0000247 b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000248 "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1")
249
250 def test_case_sha256_3(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000251 self.check('sha256', b"a" * 1000000,
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000252 "cdc76e5c9914fb9281a1c7e284d73e67f1809a48a497200e046d39ccc7112cd0")
253
254
255 def test_case_sha384_0(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000256 self.check('sha384', b"",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000257 "38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da"+
258 "274edebfe76f65fbd51ad2f14898b95b")
259
260 def test_case_sha384_1(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000261 self.check('sha384', b"abc",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000262 "cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed"+
263 "8086072ba1e7cc2358baeca134c825a7")
264
265 def test_case_sha384_2(self):
266 self.check('sha384',
Guido van Rossume22905a2007-08-27 23:09:25 +0000267 b"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"+
268 b"hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000269 "09330c33f71147e83d192fc782cd1b4753111b173b3b05d22fa08086e3b0f712"+
270 "fcc7c71a557e2db966c3e9fa91746039")
271
272 def test_case_sha384_3(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000273 self.check('sha384', b"a" * 1000000,
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000274 "9d0e1809716474cb086e834e310a4a1ced149e9c00f248527972cec5704c2a5b"+
275 "07b8b3dc38ecc4ebae97ddd87f3d8985")
276
277
278 def test_case_sha512_0(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000279 self.check('sha512', b"",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000280 "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce"+
281 "47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e")
282
283 def test_case_sha512_1(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000284 self.check('sha512', b"abc",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000285 "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a"+
286 "2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f")
287
288 def test_case_sha512_2(self):
289 self.check('sha512',
Guido van Rossume22905a2007-08-27 23:09:25 +0000290 b"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"+
291 b"hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000292 "8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018"+
293 "501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909")
294
295 def test_case_sha512_3(self):
Guido van Rossume22905a2007-08-27 23:09:25 +0000296 self.check('sha512', b"a" * 1000000,
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000297 "e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973eb"+
298 "de0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b")
299
Antoine Pitroubcd5cbe2009-01-08 21:17:16 +0000300 def test_gil(self):
301 # Check things work fine with an input larger than the size required
302 # for multithreaded operation (which is hardwired to 2048).
303 gil_minsize = 2048
304
305 m = hashlib.md5()
306 m.update(b'1')
307 m.update(b'#' * gil_minsize)
308 m.update(b'1')
309 self.assertEquals(m.hexdigest(), 'cb1e1a2cbc80be75e19935d621fb9b21')
310
311 m = hashlib.md5(b'x' * gil_minsize)
312 self.assertEquals(m.hexdigest(), 'cfb767f225d58469c5de3632a8803958')
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000313
Gregory P. Smith3f61d612009-05-04 00:45:33 +0000314 def test_threaded_hashing(self):
315 if not threading:
316 raise unittest.SkipTest('No threading module.')
317
318 # Updating the same hash object from several threads at once
319 # using data chunk sizes containing the same byte sequences.
320 #
321 # If the internal locks are working to prevent multiple
322 # updates on the same object from running at once, the resulting
323 # hash will be the same as doing it single threaded upfront.
324 hasher = hashlib.sha1()
325 num_threads = 5
326 smallest_data = b'swineflu'
327 data = smallest_data*200000
328 expected_hash = hashlib.sha1(data*num_threads).hexdigest()
329
330 def hash_in_chunks(chunk_size, event):
331 index = 0
332 while index < len(data):
333 hasher.update(data[index:index+chunk_size])
334 index += chunk_size
335 event.set()
336
337 events = []
338 for threadnum in range(num_threads):
339 chunk_size = len(data) // (10**threadnum)
340 assert chunk_size > 0
341 assert chunk_size % len(smallest_data) == 0
342 event = threading.Event()
343 events.append(event)
344 threading.Thread(target=hash_in_chunks,
345 args=(chunk_size, event)).start()
346
347 for event in events:
348 event.wait()
349
350 self.assertEqual(expected_hash, hasher.hexdigest())
351
Benjamin Petersonfa0d7032009-06-01 22:42:33 +0000352@support.reap_threads
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000353def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000354 support.run_unittest(HashLibTestCase)
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000355
Gregory P. Smithf21a5f72005-08-21 18:45:59 +0000356if __name__ == "__main__":
357 test_main()