Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 1 | # Test hashlib module |
| 2 | # |
| 3 | # $Id$ |
| 4 | # |
Benjamin Peterson | 46a9900 | 2010-01-09 18:45:30 +0000 | [diff] [blame] | 5 | # Copyright (C) 2005-2010 Gregory P. Smith (greg@krypto.org) |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 6 | # Licensed to PSF under a Contributor Agreement. |
| 7 | # |
| 8 | |
Benjamin Peterson | a28e702 | 2010-01-09 18:53:06 +0000 | [diff] [blame^] | 9 | import array |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 10 | import hashlib |
Gregory P. Smith | 3f61d61 | 2009-05-04 00:45:33 +0000 | [diff] [blame] | 11 | from io import StringIO |
Benjamin Peterson | a28e702 | 2010-01-09 18:53:06 +0000 | [diff] [blame^] | 12 | import itertools |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 13 | import sys |
Gregory P. Smith | 3f61d61 | 2009-05-04 00:45:33 +0000 | [diff] [blame] | 14 | try: |
| 15 | import threading |
| 16 | except ImportError: |
| 17 | threading = None |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 18 | import unittest |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 19 | import warnings |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 20 | from test import support |
Benjamin Peterson | 78cb491 | 2008-09-24 22:53:33 +0000 | [diff] [blame] | 21 | from test.support import _4G, precisionbigmemtest |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 22 | |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 23 | # Were we compiled --with-pydebug or with #define Py_DEBUG? |
| 24 | COMPILED_WITH_PYDEBUG = hasattr(sys, 'gettotalrefcount') |
| 25 | |
| 26 | |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 27 | def hexstr(s): |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 28 | assert isinstance(s, bytes), repr(s) |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 29 | h = "0123456789abcdef" |
| 30 | r = '' |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 31 | for i in s: |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 32 | r += h[(i >> 4) & 0xF] + h[i & 0xF] |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 33 | return r |
| 34 | |
| 35 | |
| 36 | class HashLibTestCase(unittest.TestCase): |
| 37 | supported_hash_names = ( 'md5', 'MD5', 'sha1', 'SHA1', |
| 38 | 'sha224', 'SHA224', 'sha256', 'SHA256', |
| 39 | 'sha384', 'SHA384', 'sha512', 'SHA512' ) |
| 40 | |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 41 | _warn_on_extension_import = COMPILED_WITH_PYDEBUG |
| 42 | |
| 43 | def _conditional_import_module(self, module_name): |
| 44 | """Import a module and return a reference to it or None on failure.""" |
| 45 | try: |
| 46 | exec('import '+module_name) |
| 47 | except ImportError as error: |
| 48 | if self._warn_on_extension_import: |
| 49 | warnings.warn('Did a C extension fail to compile? %s' % error) |
| 50 | return locals().get(module_name) |
| 51 | |
| 52 | def __init__(self, *args, **kwargs): |
| 53 | algorithms = set() |
| 54 | for algorithm in self.supported_hash_names: |
| 55 | algorithms.add(algorithm.lower()) |
| 56 | self.constructors_to_test = {} |
| 57 | for algorithm in algorithms: |
| 58 | self.constructors_to_test[algorithm] = set() |
| 59 | |
| 60 | # For each algorithm, test the direct constructor and the use |
| 61 | # of hashlib.new given the algorithm name. |
| 62 | for algorithm, constructors in self.constructors_to_test.items(): |
| 63 | constructors.add(getattr(hashlib, algorithm)) |
| 64 | def _test_algorithm_via_hashlib_new(data=None, _alg=algorithm): |
| 65 | if data is None: |
| 66 | return hashlib.new(_alg) |
| 67 | return hashlib.new(_alg, data) |
| 68 | constructors.add(_test_algorithm_via_hashlib_new) |
| 69 | |
| 70 | _hashlib = self._conditional_import_module('_hashlib') |
| 71 | if _hashlib: |
| 72 | # These two algorithms should always be present when this module |
| 73 | # is compiled. If not, something was compiled wrong. |
| 74 | assert hasattr(_hashlib, 'openssl_md5') |
| 75 | assert hasattr(_hashlib, 'openssl_sha1') |
| 76 | for algorithm, constructors in self.constructors_to_test.items(): |
| 77 | constructor = getattr(_hashlib, 'openssl_'+algorithm, None) |
| 78 | if constructor: |
| 79 | constructors.add(constructor) |
| 80 | |
| 81 | _md5 = self._conditional_import_module('_md5') |
| 82 | if _md5: |
Gregory P. Smith | b04ded4 | 2010-01-03 00:38:10 +0000 | [diff] [blame] | 83 | self.constructors_to_test['md5'].add(_md5.md5) |
| 84 | _sha1 = self._conditional_import_module('_sha1') |
| 85 | if _sha1: |
| 86 | self.constructors_to_test['sha1'].add(_sha1.sha1) |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 87 | _sha256 = self._conditional_import_module('_sha256') |
| 88 | if _sha256: |
| 89 | self.constructors_to_test['sha224'].add(_sha256.sha224) |
| 90 | self.constructors_to_test['sha256'].add(_sha256.sha256) |
| 91 | _sha512 = self._conditional_import_module('_sha512') |
| 92 | if _sha512: |
| 93 | self.constructors_to_test['sha384'].add(_sha512.sha384) |
| 94 | self.constructors_to_test['sha512'].add(_sha512.sha512) |
| 95 | |
| 96 | super(HashLibTestCase, self).__init__(*args, **kwargs) |
| 97 | |
Benjamin Peterson | a28e702 | 2010-01-09 18:53:06 +0000 | [diff] [blame^] | 98 | def test_hash_array(self): |
| 99 | a = array.array("b", range(10)) |
| 100 | constructors = self.constructors_to_test.values() |
| 101 | for cons in itertools.chain.from_iterable(constructors): |
| 102 | c = cons(a) |
| 103 | c.hexdigest() |
| 104 | |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 105 | def test_unknown_hash(self): |
| 106 | try: |
| 107 | hashlib.new('spam spam spam spam spam') |
| 108 | except ValueError: |
| 109 | pass |
| 110 | else: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 111 | self.assertTrue(0 == "hashlib didn't reject bogus hash name") |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 112 | |
| 113 | def test_hexdigest(self): |
| 114 | for name in self.supported_hash_names: |
| 115 | h = hashlib.new(name) |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 116 | assert isinstance(h.digest(), bytes), name |
| 117 | self.assertEqual(hexstr(h.digest()), h.hexdigest()) |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 118 | |
| 119 | |
| 120 | def test_large_update(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 121 | aas = b'a' * 128 |
| 122 | bees = b'b' * 127 |
| 123 | cees = b'c' * 126 |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 124 | |
| 125 | for name in self.supported_hash_names: |
| 126 | m1 = hashlib.new(name) |
| 127 | m1.update(aas) |
| 128 | m1.update(bees) |
| 129 | m1.update(cees) |
| 130 | |
| 131 | m2 = hashlib.new(name) |
| 132 | m2.update(aas + bees + cees) |
| 133 | self.assertEqual(m1.digest(), m2.digest()) |
| 134 | |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 135 | def check(self, name, data, digest): |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 136 | constructors = self.constructors_to_test[name] |
| 137 | # 2 is for hashlib.name(...) and hashlib.new(name, ...) |
| 138 | self.assertGreaterEqual(len(constructors), 2) |
| 139 | for hash_object_constructor in constructors: |
| 140 | computed = hash_object_constructor(data).hexdigest() |
| 141 | self.assertEqual( |
| 142 | computed, digest, |
| 143 | "Hash algorithm %s constructed using %s returned hexdigest" |
| 144 | " %r for %d byte input data that should have hashed to %r." |
| 145 | % (name, hash_object_constructor, |
| 146 | computed, len(data), digest)) |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 147 | |
Gregory P. Smith | 365a186 | 2009-02-12 07:35:29 +0000 | [diff] [blame] | 148 | def check_no_unicode(self, algorithm_name): |
| 149 | # Unicode objects are not allowed as input. |
Gregory P. Smith | cd54e54 | 2010-01-03 00:29:15 +0000 | [diff] [blame] | 150 | constructors = self.constructors_to_test[algorithm_name] |
| 151 | for hash_object_constructor in constructors: |
| 152 | self.assertRaises(TypeError, hash_object_constructor, 'spam') |
Gregory P. Smith | 365a186 | 2009-02-12 07:35:29 +0000 | [diff] [blame] | 153 | |
| 154 | def test_no_unicode(self): |
| 155 | self.check_no_unicode('md5') |
| 156 | self.check_no_unicode('sha1') |
| 157 | self.check_no_unicode('sha224') |
| 158 | self.check_no_unicode('sha256') |
| 159 | self.check_no_unicode('sha384') |
| 160 | self.check_no_unicode('sha512') |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 161 | |
| 162 | def test_case_md5_0(self): |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 163 | self.check('md5', b'', 'd41d8cd98f00b204e9800998ecf8427e') |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 164 | |
| 165 | def test_case_md5_1(self): |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 166 | self.check('md5', b'abc', '900150983cd24fb0d6963f7d28e17f72') |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 167 | |
| 168 | def test_case_md5_2(self): |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 169 | self.check('md5', |
| 170 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 171 | 'd174ab98d277d9f5a5611c2c9f419d9f') |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 172 | |
Benjamin Peterson | 78cb491 | 2008-09-24 22:53:33 +0000 | [diff] [blame] | 173 | @precisionbigmemtest(size=_4G + 5, memuse=1) |
| 174 | def test_case_md5_huge(self, size): |
| 175 | if size == _4G + 5: |
| 176 | try: |
| 177 | self.check('md5', 'A'*size, 'c9af2dff37468ce5dfee8f2cfc0a9c6d') |
| 178 | except OverflowError: |
| 179 | pass # 32-bit arch |
| 180 | |
| 181 | @precisionbigmemtest(size=_4G - 1, memuse=1) |
| 182 | def test_case_md5_uintmax(self, size): |
| 183 | if size == _4G - 1: |
| 184 | try: |
| 185 | self.check('md5', 'A'*size, '28138d306ff1b8281f1a9067e1a1a2b3') |
| 186 | except OverflowError: |
| 187 | pass # 32-bit arch |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 188 | |
| 189 | # use the three examples from Federal Information Processing Standards |
| 190 | # Publication 180-1, Secure Hash Standard, 1995 April 17 |
| 191 | # http://www.itl.nist.gov/div897/pubs/fip180-1.htm |
| 192 | |
| 193 | def test_case_sha1_0(self): |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 194 | self.check('sha1', b"", |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 195 | "da39a3ee5e6b4b0d3255bfef95601890afd80709") |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 196 | |
| 197 | def test_case_sha1_1(self): |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 198 | self.check('sha1', b"abc", |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 199 | "a9993e364706816aba3e25717850c26c9cd0d89d") |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 200 | |
| 201 | def test_case_sha1_2(self): |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 202 | self.check('sha1', |
| 203 | b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 204 | "84983e441c3bd26ebaae4aa1f95129e5e54670f1") |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 205 | |
| 206 | def test_case_sha1_3(self): |
Guido van Rossum | 5ed033b | 2007-07-09 14:29:40 +0000 | [diff] [blame] | 207 | self.check('sha1', b"a" * 1000000, |
Guido van Rossum | 558ca84 | 2007-07-10 20:31:05 +0000 | [diff] [blame] | 208 | "34aa973cd4c4daa4f61eeb2bdbad27316534016f") |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 209 | |
| 210 | |
| 211 | # use the examples from Federal Information Processing Standards |
| 212 | # Publication 180-2, Secure Hash Standard, 2002 August 1 |
| 213 | # http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf |
| 214 | |
| 215 | def test_case_sha224_0(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 216 | self.check('sha224', b"", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 217 | "d14a028c2a3a2bc9476102bb288234c415a2b01f828ea62ac5b3e42f") |
| 218 | |
| 219 | def test_case_sha224_1(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 220 | self.check('sha224', b"abc", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 221 | "23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7") |
| 222 | |
| 223 | def test_case_sha224_2(self): |
| 224 | self.check('sha224', |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 225 | b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 226 | "75388b16512776cc5dba5da1fd890150b0c6455cb4f58b1952522525") |
| 227 | |
| 228 | def test_case_sha224_3(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 229 | self.check('sha224', b"a" * 1000000, |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 230 | "20794655980c91d8bbb4c1ea97618a4bf03f42581948b2ee4ee7ad67") |
| 231 | |
| 232 | |
| 233 | def test_case_sha256_0(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 234 | self.check('sha256', b"", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 235 | "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855") |
| 236 | |
| 237 | def test_case_sha256_1(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 238 | self.check('sha256', b"abc", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 239 | "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad") |
| 240 | |
| 241 | def test_case_sha256_2(self): |
| 242 | self.check('sha256', |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 243 | b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 244 | "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1") |
| 245 | |
| 246 | def test_case_sha256_3(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 247 | self.check('sha256', b"a" * 1000000, |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 248 | "cdc76e5c9914fb9281a1c7e284d73e67f1809a48a497200e046d39ccc7112cd0") |
| 249 | |
| 250 | |
| 251 | def test_case_sha384_0(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 252 | self.check('sha384', b"", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 253 | "38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da"+ |
| 254 | "274edebfe76f65fbd51ad2f14898b95b") |
| 255 | |
| 256 | def test_case_sha384_1(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 257 | self.check('sha384', b"abc", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 258 | "cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed"+ |
| 259 | "8086072ba1e7cc2358baeca134c825a7") |
| 260 | |
| 261 | def test_case_sha384_2(self): |
| 262 | self.check('sha384', |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 263 | b"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"+ |
| 264 | b"hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 265 | "09330c33f71147e83d192fc782cd1b4753111b173b3b05d22fa08086e3b0f712"+ |
| 266 | "fcc7c71a557e2db966c3e9fa91746039") |
| 267 | |
| 268 | def test_case_sha384_3(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 269 | self.check('sha384', b"a" * 1000000, |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 270 | "9d0e1809716474cb086e834e310a4a1ced149e9c00f248527972cec5704c2a5b"+ |
| 271 | "07b8b3dc38ecc4ebae97ddd87f3d8985") |
| 272 | |
| 273 | |
| 274 | def test_case_sha512_0(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 275 | self.check('sha512', b"", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 276 | "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce"+ |
| 277 | "47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e") |
| 278 | |
| 279 | def test_case_sha512_1(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 280 | self.check('sha512', b"abc", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 281 | "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a"+ |
| 282 | "2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f") |
| 283 | |
| 284 | def test_case_sha512_2(self): |
| 285 | self.check('sha512', |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 286 | b"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"+ |
| 287 | b"hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 288 | "8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018"+ |
| 289 | "501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909") |
| 290 | |
| 291 | def test_case_sha512_3(self): |
Guido van Rossum | e22905a | 2007-08-27 23:09:25 +0000 | [diff] [blame] | 292 | self.check('sha512', b"a" * 1000000, |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 293 | "e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973eb"+ |
| 294 | "de0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b") |
| 295 | |
Antoine Pitrou | bcd5cbe | 2009-01-08 21:17:16 +0000 | [diff] [blame] | 296 | def test_gil(self): |
| 297 | # Check things work fine with an input larger than the size required |
| 298 | # for multithreaded operation (which is hardwired to 2048). |
| 299 | gil_minsize = 2048 |
| 300 | |
| 301 | m = hashlib.md5() |
| 302 | m.update(b'1') |
| 303 | m.update(b'#' * gil_minsize) |
| 304 | m.update(b'1') |
| 305 | self.assertEquals(m.hexdigest(), 'cb1e1a2cbc80be75e19935d621fb9b21') |
| 306 | |
| 307 | m = hashlib.md5(b'x' * gil_minsize) |
| 308 | self.assertEquals(m.hexdigest(), 'cfb767f225d58469c5de3632a8803958') |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 309 | |
Gregory P. Smith | 3f61d61 | 2009-05-04 00:45:33 +0000 | [diff] [blame] | 310 | def test_threaded_hashing(self): |
| 311 | if not threading: |
| 312 | raise unittest.SkipTest('No threading module.') |
| 313 | |
| 314 | # Updating the same hash object from several threads at once |
| 315 | # using data chunk sizes containing the same byte sequences. |
| 316 | # |
| 317 | # If the internal locks are working to prevent multiple |
| 318 | # updates on the same object from running at once, the resulting |
| 319 | # hash will be the same as doing it single threaded upfront. |
| 320 | hasher = hashlib.sha1() |
| 321 | num_threads = 5 |
| 322 | smallest_data = b'swineflu' |
| 323 | data = smallest_data*200000 |
| 324 | expected_hash = hashlib.sha1(data*num_threads).hexdigest() |
| 325 | |
| 326 | def hash_in_chunks(chunk_size, event): |
| 327 | index = 0 |
| 328 | while index < len(data): |
| 329 | hasher.update(data[index:index+chunk_size]) |
| 330 | index += chunk_size |
| 331 | event.set() |
| 332 | |
| 333 | events = [] |
| 334 | for threadnum in range(num_threads): |
| 335 | chunk_size = len(data) // (10**threadnum) |
| 336 | assert chunk_size > 0 |
| 337 | assert chunk_size % len(smallest_data) == 0 |
| 338 | event = threading.Event() |
| 339 | events.append(event) |
| 340 | threading.Thread(target=hash_in_chunks, |
| 341 | args=(chunk_size, event)).start() |
| 342 | |
| 343 | for event in events: |
| 344 | event.wait() |
| 345 | |
| 346 | self.assertEqual(expected_hash, hasher.hexdigest()) |
| 347 | |
Benjamin Peterson | fa0d703 | 2009-06-01 22:42:33 +0000 | [diff] [blame] | 348 | @support.reap_threads |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 349 | def test_main(): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 350 | support.run_unittest(HashLibTestCase) |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 351 | |
Gregory P. Smith | f21a5f7 | 2005-08-21 18:45:59 +0000 | [diff] [blame] | 352 | if __name__ == "__main__": |
| 353 | test_main() |