2005-08-21 15:45:59 -03:00
|
|
|
# Test hashlib module
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
2010-01-09 14:45:30 -04:00
|
|
|
# Copyright (C) 2005-2010 Gregory P. Smith (greg@krypto.org)
|
2005-08-21 15:45:59 -03:00
|
|
|
# Licensed to PSF under a Contributor Agreement.
|
|
|
|
#
|
|
|
|
|
Merged revisions 77185-77188,77262,77313,77317,77331-77333,77337-77338 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77185 | andrew.kuchling | 2009-12-31 10:17:05 -0600 (Thu, 31 Dec 2009) | 1 line
Add some items
........
r77186 | benjamin.peterson | 2009-12-31 10:28:24 -0600 (Thu, 31 Dec 2009) | 1 line
update expat comment
........
r77187 | andrew.kuchling | 2009-12-31 10:38:53 -0600 (Thu, 31 Dec 2009) | 1 line
Add various items
........
r77188 | benjamin.peterson | 2009-12-31 10:49:37 -0600 (Thu, 31 Dec 2009) | 1 line
add another advancement
........
r77262 | andrew.kuchling | 2010-01-02 19:15:21 -0600 (Sat, 02 Jan 2010) | 1 line
Add a few items
........
r77313 | benjamin.peterson | 2010-01-04 18:04:19 -0600 (Mon, 04 Jan 2010) | 1 line
add a test about hashing array.array
........
r77317 | georg.brandl | 2010-01-05 12:14:52 -0600 (Tue, 05 Jan 2010) | 1 line
Add Stefan.
........
r77331 | georg.brandl | 2010-01-06 11:43:06 -0600 (Wed, 06 Jan 2010) | 1 line
Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, add option to run the custom Cmd class.
........
r77332 | georg.brandl | 2010-01-06 12:02:16 -0600 (Wed, 06 Jan 2010) | 7 lines
#5991: let completion for the "help" command include help topics.
This also simplifies the Cmd.get_names() method implementation; it was written
at a time where dir() didn't consider base class attributes.
........
r77333 | georg.brandl | 2010-01-06 12:26:08 -0600 (Wed, 06 Jan 2010) | 1 line
#5950: document that zip files with comments are unsupported in zipimport.
........
r77337 | r.david.murray | 2010-01-06 21:09:08 -0600 (Wed, 06 Jan 2010) | 3 lines
Add -W to the 'basics', 'opt', and 'all' test runs so that we get verbose
information if a failure happens.
........
r77338 | r.david.murray | 2010-01-06 22:04:28 -0600 (Wed, 06 Jan 2010) | 2 lines
Fix inadvertent checkin of debug line.
........
2010-01-09 14:53:06 -04:00
|
|
|
import array
|
2005-08-21 15:45:59 -03:00
|
|
|
import hashlib
|
Merged revisions 77185-77188,77262,77313,77317,77331-77333,77337-77338 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77185 | andrew.kuchling | 2009-12-31 10:17:05 -0600 (Thu, 31 Dec 2009) | 1 line
Add some items
........
r77186 | benjamin.peterson | 2009-12-31 10:28:24 -0600 (Thu, 31 Dec 2009) | 1 line
update expat comment
........
r77187 | andrew.kuchling | 2009-12-31 10:38:53 -0600 (Thu, 31 Dec 2009) | 1 line
Add various items
........
r77188 | benjamin.peterson | 2009-12-31 10:49:37 -0600 (Thu, 31 Dec 2009) | 1 line
add another advancement
........
r77262 | andrew.kuchling | 2010-01-02 19:15:21 -0600 (Sat, 02 Jan 2010) | 1 line
Add a few items
........
r77313 | benjamin.peterson | 2010-01-04 18:04:19 -0600 (Mon, 04 Jan 2010) | 1 line
add a test about hashing array.array
........
r77317 | georg.brandl | 2010-01-05 12:14:52 -0600 (Tue, 05 Jan 2010) | 1 line
Add Stefan.
........
r77331 | georg.brandl | 2010-01-06 11:43:06 -0600 (Wed, 06 Jan 2010) | 1 line
Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, add option to run the custom Cmd class.
........
r77332 | georg.brandl | 2010-01-06 12:02:16 -0600 (Wed, 06 Jan 2010) | 7 lines
#5991: let completion for the "help" command include help topics.
This also simplifies the Cmd.get_names() method implementation; it was written
at a time where dir() didn't consider base class attributes.
........
r77333 | georg.brandl | 2010-01-06 12:26:08 -0600 (Wed, 06 Jan 2010) | 1 line
#5950: document that zip files with comments are unsupported in zipimport.
........
r77337 | r.david.murray | 2010-01-06 21:09:08 -0600 (Wed, 06 Jan 2010) | 3 lines
Add -W to the 'basics', 'opt', and 'all' test runs so that we get verbose
information if a failure happens.
........
r77338 | r.david.murray | 2010-01-06 22:04:28 -0600 (Wed, 06 Jan 2010) | 2 lines
Fix inadvertent checkin of debug line.
........
2010-01-09 14:53:06 -04:00
|
|
|
import itertools
|
2012-05-16 11:41:26 -03:00
|
|
|
import os
|
2010-01-02 20:29:15 -04:00
|
|
|
import sys
|
2009-05-03 21:45:33 -03:00
|
|
|
try:
|
|
|
|
import threading
|
|
|
|
except ImportError:
|
|
|
|
threading = None
|
2005-08-21 15:45:59 -03:00
|
|
|
import unittest
|
2010-01-02 20:29:15 -04:00
|
|
|
import warnings
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2013-10-19 09:12:02 -03:00
|
|
|
from test.support import _4G, bigmemtest, import_fresh_module
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2010-01-02 20:29:15 -04:00
|
|
|
# Were we compiled --with-pydebug or with #define Py_DEBUG?
|
|
|
|
COMPILED_WITH_PYDEBUG = hasattr(sys, 'gettotalrefcount')
|
|
|
|
|
2013-10-19 09:12:02 -03:00
|
|
|
c_hashlib = import_fresh_module('hashlib', fresh=['_hashlib'])
|
|
|
|
py_hashlib = import_fresh_module('hashlib', blocked=['_hashlib'])
|
2010-01-02 20:29:15 -04:00
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
def hexstr(s):
|
2007-07-09 11:29:40 -03:00
|
|
|
assert isinstance(s, bytes), repr(s)
|
2007-07-10 17:31:05 -03:00
|
|
|
h = "0123456789abcdef"
|
|
|
|
r = ''
|
2007-07-09 11:29:40 -03:00
|
|
|
for i in s:
|
2007-07-10 17:31:05 -03:00
|
|
|
r += h[(i >> 4) & 0xF] + h[i & 0xF]
|
2005-08-21 15:45:59 -03:00
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
class HashLibTestCase(unittest.TestCase):
|
|
|
|
supported_hash_names = ( 'md5', 'MD5', 'sha1', 'SHA1',
|
|
|
|
'sha224', 'SHA224', 'sha256', 'SHA256',
|
2014-01-03 09:05:06 -04:00
|
|
|
'sha384', 'SHA384', 'sha512', 'SHA512')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2012-05-16 11:41:26 -03:00
|
|
|
# Issue #14693: fallback modules are always compiled under POSIX
|
|
|
|
_warn_on_extension_import = os.name == 'posix' or COMPILED_WITH_PYDEBUG
|
2010-01-02 20:29:15 -04:00
|
|
|
|
|
|
|
def _conditional_import_module(self, module_name):
|
|
|
|
"""Import a module and return a reference to it or None on failure."""
|
|
|
|
try:
|
|
|
|
exec('import '+module_name)
|
|
|
|
except ImportError as error:
|
|
|
|
if self._warn_on_extension_import:
|
|
|
|
warnings.warn('Did a C extension fail to compile? %s' % error)
|
|
|
|
return locals().get(module_name)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
algorithms = set()
|
|
|
|
for algorithm in self.supported_hash_names:
|
|
|
|
algorithms.add(algorithm.lower())
|
|
|
|
self.constructors_to_test = {}
|
|
|
|
for algorithm in algorithms:
|
|
|
|
self.constructors_to_test[algorithm] = set()
|
|
|
|
|
|
|
|
# For each algorithm, test the direct constructor and the use
|
|
|
|
# of hashlib.new given the algorithm name.
|
|
|
|
for algorithm, constructors in self.constructors_to_test.items():
|
|
|
|
constructors.add(getattr(hashlib, algorithm))
|
|
|
|
def _test_algorithm_via_hashlib_new(data=None, _alg=algorithm):
|
|
|
|
if data is None:
|
|
|
|
return hashlib.new(_alg)
|
|
|
|
return hashlib.new(_alg, data)
|
|
|
|
constructors.add(_test_algorithm_via_hashlib_new)
|
|
|
|
|
|
|
|
_hashlib = self._conditional_import_module('_hashlib')
|
|
|
|
if _hashlib:
|
|
|
|
# These two algorithms should always be present when this module
|
|
|
|
# is compiled. If not, something was compiled wrong.
|
2013-08-05 17:14:37 -03:00
|
|
|
self.assertTrue(hasattr(_hashlib, 'openssl_md5'))
|
|
|
|
self.assertTrue(hasattr(_hashlib, 'openssl_sha1'))
|
2010-01-02 20:29:15 -04:00
|
|
|
for algorithm, constructors in self.constructors_to_test.items():
|
|
|
|
constructor = getattr(_hashlib, 'openssl_'+algorithm, None)
|
|
|
|
if constructor:
|
|
|
|
constructors.add(constructor)
|
|
|
|
|
2013-10-22 09:59:12 -03:00
|
|
|
def add_builtin_constructor(name):
|
|
|
|
constructor = getattr(hashlib, "__get_builtin_constructor")(name)
|
|
|
|
self.constructors_to_test[name].add(constructor)
|
|
|
|
|
2010-01-02 20:29:15 -04:00
|
|
|
_md5 = self._conditional_import_module('_md5')
|
|
|
|
if _md5:
|
2013-10-22 09:59:12 -03:00
|
|
|
add_builtin_constructor('md5')
|
2010-01-02 20:38:10 -04:00
|
|
|
_sha1 = self._conditional_import_module('_sha1')
|
|
|
|
if _sha1:
|
2013-10-22 09:59:12 -03:00
|
|
|
add_builtin_constructor('sha1')
|
2010-01-02 20:29:15 -04:00
|
|
|
_sha256 = self._conditional_import_module('_sha256')
|
|
|
|
if _sha256:
|
2013-10-22 09:59:12 -03:00
|
|
|
add_builtin_constructor('sha224')
|
|
|
|
add_builtin_constructor('sha256')
|
2010-01-02 20:29:15 -04:00
|
|
|
_sha512 = self._conditional_import_module('_sha512')
|
|
|
|
if _sha512:
|
2013-10-22 09:59:12 -03:00
|
|
|
add_builtin_constructor('sha384')
|
|
|
|
add_builtin_constructor('sha512')
|
2010-01-02 20:29:15 -04:00
|
|
|
|
|
|
|
super(HashLibTestCase, self).__init__(*args, **kwargs)
|
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
@property
|
|
|
|
def hash_constructors(self):
|
|
|
|
constructors = self.constructors_to_test.values()
|
|
|
|
return itertools.chain.from_iterable(constructors)
|
|
|
|
|
Merged revisions 77185-77188,77262,77313,77317,77331-77333,77337-77338 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77185 | andrew.kuchling | 2009-12-31 10:17:05 -0600 (Thu, 31 Dec 2009) | 1 line
Add some items
........
r77186 | benjamin.peterson | 2009-12-31 10:28:24 -0600 (Thu, 31 Dec 2009) | 1 line
update expat comment
........
r77187 | andrew.kuchling | 2009-12-31 10:38:53 -0600 (Thu, 31 Dec 2009) | 1 line
Add various items
........
r77188 | benjamin.peterson | 2009-12-31 10:49:37 -0600 (Thu, 31 Dec 2009) | 1 line
add another advancement
........
r77262 | andrew.kuchling | 2010-01-02 19:15:21 -0600 (Sat, 02 Jan 2010) | 1 line
Add a few items
........
r77313 | benjamin.peterson | 2010-01-04 18:04:19 -0600 (Mon, 04 Jan 2010) | 1 line
add a test about hashing array.array
........
r77317 | georg.brandl | 2010-01-05 12:14:52 -0600 (Tue, 05 Jan 2010) | 1 line
Add Stefan.
........
r77331 | georg.brandl | 2010-01-06 11:43:06 -0600 (Wed, 06 Jan 2010) | 1 line
Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, add option to run the custom Cmd class.
........
r77332 | georg.brandl | 2010-01-06 12:02:16 -0600 (Wed, 06 Jan 2010) | 7 lines
#5991: let completion for the "help" command include help topics.
This also simplifies the Cmd.get_names() method implementation; it was written
at a time where dir() didn't consider base class attributes.
........
r77333 | georg.brandl | 2010-01-06 12:26:08 -0600 (Wed, 06 Jan 2010) | 1 line
#5950: document that zip files with comments are unsupported in zipimport.
........
r77337 | r.david.murray | 2010-01-06 21:09:08 -0600 (Wed, 06 Jan 2010) | 3 lines
Add -W to the 'basics', 'opt', and 'all' test runs so that we get verbose
information if a failure happens.
........
r77338 | r.david.murray | 2010-01-06 22:04:28 -0600 (Wed, 06 Jan 2010) | 2 lines
Fix inadvertent checkin of debug line.
........
2010-01-09 14:53:06 -04:00
|
|
|
def test_hash_array(self):
|
|
|
|
a = array.array("b", range(10))
|
2013-07-30 10:33:30 -03:00
|
|
|
for cons in self.hash_constructors:
|
Merged revisions 77185-77188,77262,77313,77317,77331-77333,77337-77338 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77185 | andrew.kuchling | 2009-12-31 10:17:05 -0600 (Thu, 31 Dec 2009) | 1 line
Add some items
........
r77186 | benjamin.peterson | 2009-12-31 10:28:24 -0600 (Thu, 31 Dec 2009) | 1 line
update expat comment
........
r77187 | andrew.kuchling | 2009-12-31 10:38:53 -0600 (Thu, 31 Dec 2009) | 1 line
Add various items
........
r77188 | benjamin.peterson | 2009-12-31 10:49:37 -0600 (Thu, 31 Dec 2009) | 1 line
add another advancement
........
r77262 | andrew.kuchling | 2010-01-02 19:15:21 -0600 (Sat, 02 Jan 2010) | 1 line
Add a few items
........
r77313 | benjamin.peterson | 2010-01-04 18:04:19 -0600 (Mon, 04 Jan 2010) | 1 line
add a test about hashing array.array
........
r77317 | georg.brandl | 2010-01-05 12:14:52 -0600 (Tue, 05 Jan 2010) | 1 line
Add Stefan.
........
r77331 | georg.brandl | 2010-01-06 11:43:06 -0600 (Wed, 06 Jan 2010) | 1 line
Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, add option to run the custom Cmd class.
........
r77332 | georg.brandl | 2010-01-06 12:02:16 -0600 (Wed, 06 Jan 2010) | 7 lines
#5991: let completion for the "help" command include help topics.
This also simplifies the Cmd.get_names() method implementation; it was written
at a time where dir() didn't consider base class attributes.
........
r77333 | georg.brandl | 2010-01-06 12:26:08 -0600 (Wed, 06 Jan 2010) | 1 line
#5950: document that zip files with comments are unsupported in zipimport.
........
r77337 | r.david.murray | 2010-01-06 21:09:08 -0600 (Wed, 06 Jan 2010) | 3 lines
Add -W to the 'basics', 'opt', and 'all' test runs so that we get verbose
information if a failure happens.
........
r77338 | r.david.murray | 2010-01-06 22:04:28 -0600 (Wed, 06 Jan 2010) | 2 lines
Fix inadvertent checkin of debug line.
........
2010-01-09 14:53:06 -04:00
|
|
|
c = cons(a)
|
|
|
|
c.hexdigest()
|
|
|
|
|
2010-09-06 05:30:23 -03:00
|
|
|
def test_algorithms_guaranteed(self):
|
|
|
|
self.assertEqual(hashlib.algorithms_guaranteed,
|
2011-01-24 00:52:27 -04:00
|
|
|
set(_algo for _algo in self.supported_hash_names
|
2010-02-28 22:05:26 -04:00
|
|
|
if _algo.islower()))
|
|
|
|
|
2010-09-06 05:30:23 -03:00
|
|
|
def test_algorithms_available(self):
|
|
|
|
self.assertTrue(set(hashlib.algorithms_guaranteed).
|
|
|
|
issubset(hashlib.algorithms_available))
|
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
def test_unknown_hash(self):
|
2012-06-28 20:53:13 -03:00
|
|
|
self.assertRaises(ValueError, hashlib.new, 'spam spam spam spam spam')
|
|
|
|
self.assertRaises(TypeError, hashlib.new, 1)
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2011-05-14 19:15:49 -03:00
|
|
|
def test_get_builtin_constructor(self):
|
2013-10-22 09:59:12 -03:00
|
|
|
get_builtin_constructor = getattr(hashlib,
|
|
|
|
'__get_builtin_constructor')
|
|
|
|
builtin_constructor_cache = getattr(hashlib,
|
|
|
|
'__builtin_constructor_cache')
|
2011-05-14 19:15:49 -03:00
|
|
|
self.assertRaises(ValueError, get_builtin_constructor, 'test')
|
|
|
|
try:
|
|
|
|
import _md5
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
# This forces an ImportError for "import _md5" statements
|
|
|
|
sys.modules['_md5'] = None
|
2013-10-22 09:59:12 -03:00
|
|
|
# clear the cache
|
|
|
|
builtin_constructor_cache.clear()
|
2011-05-14 19:15:49 -03:00
|
|
|
try:
|
|
|
|
self.assertRaises(ValueError, get_builtin_constructor, 'md5')
|
|
|
|
finally:
|
|
|
|
if '_md5' in locals():
|
|
|
|
sys.modules['_md5'] = _md5
|
|
|
|
else:
|
|
|
|
del sys.modules['_md5']
|
2012-07-22 01:19:53 -03:00
|
|
|
self.assertRaises(TypeError, get_builtin_constructor, 3)
|
2013-10-22 09:59:12 -03:00
|
|
|
constructor = get_builtin_constructor('md5')
|
|
|
|
self.assertIs(constructor, _md5.md5)
|
|
|
|
self.assertEqual(sorted(builtin_constructor_cache), ['MD5', 'md5'])
|
2011-05-14 19:15:49 -03:00
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
def test_hexdigest(self):
|
2013-07-30 10:33:30 -03:00
|
|
|
for cons in self.hash_constructors:
|
|
|
|
h = cons()
|
2013-08-05 17:14:37 -03:00
|
|
|
self.assertIsInstance(h.digest(), bytes)
|
2007-07-09 11:29:40 -03:00
|
|
|
self.assertEqual(hexstr(h.digest()), h.hexdigest())
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2013-08-03 06:39:39 -03:00
|
|
|
def test_name_attribute(self):
|
|
|
|
for cons in self.hash_constructors:
|
|
|
|
h = cons()
|
2013-08-05 17:14:37 -03:00
|
|
|
self.assertIsInstance(h.name, str)
|
|
|
|
self.assertIn(h.name, self.supported_hash_names)
|
|
|
|
self.assertEqual(h.name, hashlib.new(h.name).name)
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
def test_large_update(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
aas = b'a' * 128
|
|
|
|
bees = b'b' * 127
|
|
|
|
cees = b'c' * 126
|
2013-07-30 10:33:30 -03:00
|
|
|
dees = b'd' * 2048 # HASHLIB_GIL_MINSIZE
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
for cons in self.hash_constructors:
|
|
|
|
m1 = cons()
|
2005-08-21 15:45:59 -03:00
|
|
|
m1.update(aas)
|
|
|
|
m1.update(bees)
|
|
|
|
m1.update(cees)
|
2013-07-30 10:33:30 -03:00
|
|
|
m1.update(dees)
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
m2 = cons()
|
|
|
|
m2.update(aas + bees + cees + dees)
|
2005-08-21 15:45:59 -03:00
|
|
|
self.assertEqual(m1.digest(), m2.digest())
|
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
m3 = cons(aas + bees + cees + dees)
|
|
|
|
self.assertEqual(m1.digest(), m3.digest())
|
|
|
|
|
|
|
|
# verify copy() doesn't touch original
|
|
|
|
m4 = cons(aas + bees + cees)
|
|
|
|
m4_digest = m4.digest()
|
|
|
|
m4_copy = m4.copy()
|
|
|
|
m4_copy.update(dees)
|
|
|
|
self.assertEqual(m1.digest(), m4_copy.digest())
|
|
|
|
self.assertEqual(m4.digest(), m4_digest)
|
|
|
|
|
|
|
|
def check(self, name, data, hexdigest):
|
|
|
|
hexdigest = hexdigest.lower()
|
2010-01-02 20:29:15 -04:00
|
|
|
constructors = self.constructors_to_test[name]
|
|
|
|
# 2 is for hashlib.name(...) and hashlib.new(name, ...)
|
|
|
|
self.assertGreaterEqual(len(constructors), 2)
|
|
|
|
for hash_object_constructor in constructors:
|
2013-07-30 10:33:30 -03:00
|
|
|
m = hash_object_constructor(data)
|
|
|
|
computed = m.hexdigest()
|
2010-01-02 20:29:15 -04:00
|
|
|
self.assertEqual(
|
2013-07-30 10:33:30 -03:00
|
|
|
computed, hexdigest,
|
2010-01-02 20:29:15 -04:00
|
|
|
"Hash algorithm %s constructed using %s returned hexdigest"
|
|
|
|
" %r for %d byte input data that should have hashed to %r."
|
|
|
|
% (name, hash_object_constructor,
|
2013-07-30 10:33:30 -03:00
|
|
|
computed, len(data), hexdigest))
|
|
|
|
computed = m.digest()
|
|
|
|
digest = bytes.fromhex(hexdigest)
|
|
|
|
self.assertEqual(computed, digest)
|
|
|
|
self.assertEqual(len(digest), m.digest_size)
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2009-02-12 03:35:29 -04:00
|
|
|
def check_no_unicode(self, algorithm_name):
|
|
|
|
# Unicode objects are not allowed as input.
|
2010-01-02 20:29:15 -04:00
|
|
|
constructors = self.constructors_to_test[algorithm_name]
|
|
|
|
for hash_object_constructor in constructors:
|
|
|
|
self.assertRaises(TypeError, hash_object_constructor, 'spam')
|
2009-02-12 03:35:29 -04:00
|
|
|
|
|
|
|
def test_no_unicode(self):
|
|
|
|
self.check_no_unicode('md5')
|
|
|
|
self.check_no_unicode('sha1')
|
|
|
|
self.check_no_unicode('sha224')
|
|
|
|
self.check_no_unicode('sha256')
|
|
|
|
self.check_no_unicode('sha384')
|
|
|
|
self.check_no_unicode('sha512')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
def check_blocksize_name(self, name, block_size=0, digest_size=0):
|
|
|
|
constructors = self.constructors_to_test[name]
|
|
|
|
for hash_object_constructor in constructors:
|
|
|
|
m = hash_object_constructor()
|
|
|
|
self.assertEqual(m.block_size, block_size)
|
|
|
|
self.assertEqual(m.digest_size, digest_size)
|
|
|
|
self.assertEqual(len(m.digest()), digest_size)
|
2013-08-15 13:31:48 -03:00
|
|
|
self.assertEqual(m.name, name)
|
2013-07-30 10:35:54 -03:00
|
|
|
# split for sha3_512 / _sha3.sha3 object
|
2013-08-15 13:31:48 -03:00
|
|
|
self.assertIn(name.split("_")[0], repr(m))
|
2013-07-30 10:33:30 -03:00
|
|
|
|
|
|
|
def test_blocksize_name(self):
|
|
|
|
self.check_blocksize_name('md5', 64, 16)
|
|
|
|
self.check_blocksize_name('sha1', 64, 20)
|
|
|
|
self.check_blocksize_name('sha224', 64, 28)
|
|
|
|
self.check_blocksize_name('sha256', 64, 32)
|
|
|
|
self.check_blocksize_name('sha384', 128, 48)
|
|
|
|
self.check_blocksize_name('sha512', 128, 64)
|
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
def test_case_md5_0(self):
|
2007-07-10 17:31:05 -03:00
|
|
|
self.check('md5', b'', 'd41d8cd98f00b204e9800998ecf8427e')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
def test_case_md5_1(self):
|
2007-07-10 17:31:05 -03:00
|
|
|
self.check('md5', b'abc', '900150983cd24fb0d6963f7d28e17f72')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
def test_case_md5_2(self):
|
2007-07-09 11:29:40 -03:00
|
|
|
self.check('md5',
|
|
|
|
b'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
|
2007-07-10 17:31:05 -03:00
|
|
|
'd174ab98d277d9f5a5611c2c9f419d9f')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2014-01-10 07:37:54 -04:00
|
|
|
@unittest.skipIf(sys.maxsize < _4G + 5, 'test cannot run on 32-bit systems')
|
|
|
|
@bigmemtest(size=_4G + 5, memuse=1, dry_run=False)
|
2008-09-24 19:53:33 -03:00
|
|
|
def test_case_md5_huge(self, size):
|
2014-01-10 07:37:54 -04:00
|
|
|
self.check('md5', b'A'*size, 'c9af2dff37468ce5dfee8f2cfc0a9c6d')
|
2008-09-24 19:53:33 -03:00
|
|
|
|
2014-01-10 07:37:54 -04:00
|
|
|
@unittest.skipIf(sys.maxsize < _4G - 1, 'test cannot run on 32-bit systems')
|
|
|
|
@bigmemtest(size=_4G - 1, memuse=1, dry_run=False)
|
2008-09-24 19:53:33 -03:00
|
|
|
def test_case_md5_uintmax(self, size):
|
2014-01-10 07:37:54 -04:00
|
|
|
self.check('md5', b'A'*size, '28138d306ff1b8281f1a9067e1a1a2b3')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
# use the three examples from Federal Information Processing Standards
|
|
|
|
# Publication 180-1, Secure Hash Standard, 1995 April 17
|
|
|
|
# http://www.itl.nist.gov/div897/pubs/fip180-1.htm
|
|
|
|
|
|
|
|
def test_case_sha1_0(self):
|
2007-07-09 11:29:40 -03:00
|
|
|
self.check('sha1', b"",
|
2007-07-10 17:31:05 -03:00
|
|
|
"da39a3ee5e6b4b0d3255bfef95601890afd80709")
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
def test_case_sha1_1(self):
|
2007-07-09 11:29:40 -03:00
|
|
|
self.check('sha1', b"abc",
|
2007-07-10 17:31:05 -03:00
|
|
|
"a9993e364706816aba3e25717850c26c9cd0d89d")
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
def test_case_sha1_2(self):
|
2007-07-09 11:29:40 -03:00
|
|
|
self.check('sha1',
|
|
|
|
b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
|
2007-07-10 17:31:05 -03:00
|
|
|
"84983e441c3bd26ebaae4aa1f95129e5e54670f1")
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
def test_case_sha1_3(self):
|
2007-07-09 11:29:40 -03:00
|
|
|
self.check('sha1', b"a" * 1000000,
|
2007-07-10 17:31:05 -03:00
|
|
|
"34aa973cd4c4daa4f61eeb2bdbad27316534016f")
|
2005-08-21 15:45:59 -03:00
|
|
|
|
|
|
|
|
|
|
|
# use the examples from Federal Information Processing Standards
|
|
|
|
# Publication 180-2, Secure Hash Standard, 2002 August 1
|
|
|
|
# http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf
|
|
|
|
|
|
|
|
def test_case_sha224_0(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha224', b"",
|
2005-08-21 15:45:59 -03:00
|
|
|
"d14a028c2a3a2bc9476102bb288234c415a2b01f828ea62ac5b3e42f")
|
|
|
|
|
|
|
|
def test_case_sha224_1(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha224', b"abc",
|
2005-08-21 15:45:59 -03:00
|
|
|
"23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7")
|
|
|
|
|
|
|
|
def test_case_sha224_2(self):
|
|
|
|
self.check('sha224',
|
2007-08-27 20:09:25 -03:00
|
|
|
b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
|
2005-08-21 15:45:59 -03:00
|
|
|
"75388b16512776cc5dba5da1fd890150b0c6455cb4f58b1952522525")
|
|
|
|
|
|
|
|
def test_case_sha224_3(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha224', b"a" * 1000000,
|
2005-08-21 15:45:59 -03:00
|
|
|
"20794655980c91d8bbb4c1ea97618a4bf03f42581948b2ee4ee7ad67")
|
|
|
|
|
|
|
|
|
|
|
|
def test_case_sha256_0(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha256', b"",
|
2005-08-21 15:45:59 -03:00
|
|
|
"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855")
|
|
|
|
|
|
|
|
def test_case_sha256_1(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha256', b"abc",
|
2005-08-21 15:45:59 -03:00
|
|
|
"ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad")
|
|
|
|
|
|
|
|
def test_case_sha256_2(self):
|
|
|
|
self.check('sha256',
|
2007-08-27 20:09:25 -03:00
|
|
|
b"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
|
2005-08-21 15:45:59 -03:00
|
|
|
"248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1")
|
|
|
|
|
|
|
|
def test_case_sha256_3(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha256', b"a" * 1000000,
|
2005-08-21 15:45:59 -03:00
|
|
|
"cdc76e5c9914fb9281a1c7e284d73e67f1809a48a497200e046d39ccc7112cd0")
|
|
|
|
|
|
|
|
|
|
|
|
def test_case_sha384_0(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha384', b"",
|
2005-08-21 15:45:59 -03:00
|
|
|
"38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da"+
|
|
|
|
"274edebfe76f65fbd51ad2f14898b95b")
|
|
|
|
|
|
|
|
def test_case_sha384_1(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha384', b"abc",
|
2005-08-21 15:45:59 -03:00
|
|
|
"cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed"+
|
|
|
|
"8086072ba1e7cc2358baeca134c825a7")
|
|
|
|
|
|
|
|
def test_case_sha384_2(self):
|
|
|
|
self.check('sha384',
|
2007-08-27 20:09:25 -03:00
|
|
|
b"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"+
|
|
|
|
b"hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
|
2005-08-21 15:45:59 -03:00
|
|
|
"09330c33f71147e83d192fc782cd1b4753111b173b3b05d22fa08086e3b0f712"+
|
|
|
|
"fcc7c71a557e2db966c3e9fa91746039")
|
|
|
|
|
|
|
|
def test_case_sha384_3(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha384', b"a" * 1000000,
|
2005-08-21 15:45:59 -03:00
|
|
|
"9d0e1809716474cb086e834e310a4a1ced149e9c00f248527972cec5704c2a5b"+
|
|
|
|
"07b8b3dc38ecc4ebae97ddd87f3d8985")
|
|
|
|
|
|
|
|
|
|
|
|
def test_case_sha512_0(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha512', b"",
|
2005-08-21 15:45:59 -03:00
|
|
|
"cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce"+
|
|
|
|
"47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e")
|
|
|
|
|
|
|
|
def test_case_sha512_1(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha512', b"abc",
|
2005-08-21 15:45:59 -03:00
|
|
|
"ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a"+
|
|
|
|
"2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f")
|
|
|
|
|
|
|
|
def test_case_sha512_2(self):
|
|
|
|
self.check('sha512',
|
2007-08-27 20:09:25 -03:00
|
|
|
b"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"+
|
|
|
|
b"hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
|
2005-08-21 15:45:59 -03:00
|
|
|
"8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018"+
|
|
|
|
"501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909")
|
|
|
|
|
|
|
|
def test_case_sha512_3(self):
|
2007-08-27 20:09:25 -03:00
|
|
|
self.check('sha512', b"a" * 1000000,
|
2005-08-21 15:45:59 -03:00
|
|
|
"e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973eb"+
|
|
|
|
"de0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b")
|
|
|
|
|
2014-01-10 07:39:27 -04:00
|
|
|
@unittest.skipIf(sys.maxsize < _4G + 5, 'test cannot run on 32-bit systems')
|
|
|
|
@bigmemtest(size=_4G + 5, memuse=1, dry_run=False)
|
2012-10-05 21:23:36 -03:00
|
|
|
def test_case_sha3_224_huge(self, size):
|
2014-01-10 07:39:27 -04:00
|
|
|
self.check('sha3_224', b'A'*size,
|
|
|
|
'58ef60057c9dddb6a87477e9ace5a26f0d9db01881cf9b10a9f8c224')
|
2012-10-05 21:23:36 -03:00
|
|
|
|
2009-01-08 17:17:16 -04:00
|
|
|
def test_gil(self):
|
|
|
|
# Check things work fine with an input larger than the size required
|
|
|
|
# for multithreaded operation (which is hardwired to 2048).
|
|
|
|
gil_minsize = 2048
|
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
for cons in self.hash_constructors:
|
|
|
|
m = cons()
|
2012-10-05 21:23:36 -03:00
|
|
|
m.update(b'1')
|
|
|
|
m.update(b'#' * gil_minsize)
|
|
|
|
m.update(b'1')
|
|
|
|
|
2013-07-30 10:33:30 -03:00
|
|
|
m = cons(b'x' * gil_minsize)
|
2012-10-05 21:23:36 -03:00
|
|
|
m.update(b'1')
|
|
|
|
|
2009-01-08 17:17:16 -04:00
|
|
|
m = hashlib.md5()
|
|
|
|
m.update(b'1')
|
|
|
|
m.update(b'#' * gil_minsize)
|
|
|
|
m.update(b'1')
|
2010-11-20 15:04:17 -04:00
|
|
|
self.assertEqual(m.hexdigest(), 'cb1e1a2cbc80be75e19935d621fb9b21')
|
2009-01-08 17:17:16 -04:00
|
|
|
|
|
|
|
m = hashlib.md5(b'x' * gil_minsize)
|
2010-11-20 15:04:17 -04:00
|
|
|
self.assertEqual(m.hexdigest(), 'cfb767f225d58469c5de3632a8803958')
|
2005-08-21 15:45:59 -03:00
|
|
|
|
Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80552 | victor.stinner | 2010-04-27 23:46:03 +0200 (mar., 27 avril 2010) | 3 lines
Issue #7449, part 1: fix test_support.py for Python compiled without thread
........
r80553 | victor.stinner | 2010-04-27 23:47:01 +0200 (mar., 27 avril 2010) | 1 line
Issue #7449, part 2: regrtest.py -j option requires thread support
........
r80554 | victor.stinner | 2010-04-27 23:51:26 +0200 (mar., 27 avril 2010) | 9 lines
Issue #7449 part 3, test_doctest: import trace module in test_coverage()
Import trace module fail if the threading module is missing. test_coverage() is
only used if test_doctest.py is used with the -c option. This commit allows to
execute the test suite without thread support.
Move "import trace" in test_coverage() and use
test_support.import_module('trace').
........
r80555 | victor.stinner | 2010-04-27 23:56:26 +0200 (mar., 27 avril 2010) | 6 lines
Issue #7449, part 4: skip test_multiprocessing if thread support is disabled
import threading after _multiprocessing to raise a more revelant error message:
"No module named _multiprocessing". _multiprocessing is not compiled without
thread support.
........
r80556 | victor.stinner | 2010-04-28 00:01:24 +0200 (mer., 28 avril 2010) | 8 lines
Issue #7449, part 5: split Test.test_open() of ctypes/test/test_errno.py
* Split Test.test_open() in 2 functions: test_open() and test_thread_open()
* Skip test_open() and test_thread_open() if we are unable to find the C
library
* Skip test_thread_open() if thread support is disabled
* Use unittest.skipUnless(os.name == "nt", ...) on test_GetLastError()
........
r80564 | victor.stinner | 2010-04-28 00:59:35 +0200 (mer., 28 avril 2010) | 4 lines
Issue #7449, part 6: fix test_hashlib for missing threading module
Move @test_support.reap_thread decorator from test_main() to test_threaded_hashing().
........
r80565 | victor.stinner | 2010-04-28 01:01:29 +0200 (mer., 28 avril 2010) | 6 lines
Issue #7449, part 7: simplify threading detection in test_capi
* Skip TestPendingCalls if threading module is missing
* Test if threading module is present or not, instead of test the presence of
_testcapi._test_thread_state
........
r80566 | victor.stinner | 2010-04-28 01:03:16 +0200 (mer., 28 avril 2010) | 4 lines
Issue #7449, part 8: don't skip the whole test_asynchat if threading is missing
TestFifo can be executed without the threading module
........
r80568 | victor.stinner | 2010-04-28 01:14:58 +0200 (mer., 28 avril 2010) | 6 lines
Issue #7449, part 9: fix test_xmlrpclib for missing threading module
* Skip testcases using threads if threading module is missing
* Use "http://" instead of URL in ServerProxyTestCase if threading is missing
because URL is not set in this case
........
r80569 | victor.stinner | 2010-04-28 01:33:58 +0200 (mer., 28 avril 2010) | 6 lines
Partial revert of r80556 (Issue #7449, part 5, fix ctypes test)
Rewrite r80556: the thread test have to be executed just after the test on
libc_open() and so the test cannot be splitted in two functions (without
duplicating code, and I don't want to duplicate code).
........
r80570 | victor.stinner | 2010-04-28 01:51:16 +0200 (mer., 28 avril 2010) | 8 lines
Issue #7449, part 10: test_cmd imports trace module using test_support.import_module()
Use test_support.import_module() instead of import to raise a SkipTest
exception if the import fail. Import trace fails if the threading module is
missing.
See also part 3: test_doctest: import trace module in test_coverage().
........
r80571 | victor.stinner | 2010-04-28 01:55:59 +0200 (mer., 28 avril 2010) | 6 lines
Issue #7449, last part (11): fix many tests if thread support is disabled
* Use try/except ImportError or test_support.import_module() to import thread
and threading modules
* Add @unittest.skipUnless(threading, ...) to testcases using threads
........
2010-04-28 19:31:17 -03:00
|
|
|
@unittest.skipUnless(threading, 'Threading required for this test.')
|
|
|
|
@support.reap_threads
|
2009-05-03 21:45:33 -03:00
|
|
|
def test_threaded_hashing(self):
|
|
|
|
# Updating the same hash object from several threads at once
|
|
|
|
# using data chunk sizes containing the same byte sequences.
|
|
|
|
#
|
|
|
|
# If the internal locks are working to prevent multiple
|
|
|
|
# updates on the same object from running at once, the resulting
|
|
|
|
# hash will be the same as doing it single threaded upfront.
|
|
|
|
hasher = hashlib.sha1()
|
|
|
|
num_threads = 5
|
|
|
|
smallest_data = b'swineflu'
|
|
|
|
data = smallest_data*200000
|
|
|
|
expected_hash = hashlib.sha1(data*num_threads).hexdigest()
|
|
|
|
|
|
|
|
def hash_in_chunks(chunk_size, event):
|
|
|
|
index = 0
|
|
|
|
while index < len(data):
|
|
|
|
hasher.update(data[index:index+chunk_size])
|
|
|
|
index += chunk_size
|
|
|
|
event.set()
|
|
|
|
|
|
|
|
events = []
|
|
|
|
for threadnum in range(num_threads):
|
|
|
|
chunk_size = len(data) // (10**threadnum)
|
2013-08-05 17:14:37 -03:00
|
|
|
self.assertGreater(chunk_size, 0)
|
|
|
|
self.assertEqual(chunk_size % len(smallest_data), 0)
|
2009-05-03 21:45:33 -03:00
|
|
|
event = threading.Event()
|
|
|
|
events.append(event)
|
|
|
|
threading.Thread(target=hash_in_chunks,
|
|
|
|
args=(chunk_size, event)).start()
|
|
|
|
|
|
|
|
for event in events:
|
|
|
|
event.wait()
|
|
|
|
|
|
|
|
self.assertEqual(expected_hash, hasher.hexdigest())
|
|
|
|
|
2013-10-19 09:12:02 -03:00
|
|
|
|
2013-10-19 14:40:49 -03:00
|
|
|
class KDFTests(unittest.TestCase):
|
2013-10-19 09:12:02 -03:00
|
|
|
|
2013-10-12 19:52:43 -03:00
|
|
|
pbkdf2_test_vectors = [
|
|
|
|
(b'password', b'salt', 1, None),
|
|
|
|
(b'password', b'salt', 2, None),
|
|
|
|
(b'password', b'salt', 4096, None),
|
|
|
|
# too slow, it takes over a minute on a fast CPU.
|
|
|
|
#(b'password', b'salt', 16777216, None),
|
|
|
|
(b'passwordPASSWORDpassword', b'saltSALTsaltSALTsaltSALTsaltSALTsalt',
|
|
|
|
4096, -1),
|
|
|
|
(b'pass\0word', b'sa\0lt', 4096, 16),
|
|
|
|
]
|
|
|
|
|
|
|
|
pbkdf2_results = {
|
|
|
|
"sha1": [
|
|
|
|
# offical test vectors from RFC 6070
|
|
|
|
(bytes.fromhex('0c60c80f961f0e71f3a9b524af6012062fe037a6'), None),
|
|
|
|
(bytes.fromhex('ea6c014dc72d6f8ccd1ed92ace1d41f0d8de8957'), None),
|
|
|
|
(bytes.fromhex('4b007901b765489abead49d926f721d065a429c1'), None),
|
|
|
|
#(bytes.fromhex('eefe3d61cd4da4e4e9945b3d6ba2158c2634e984'), None),
|
|
|
|
(bytes.fromhex('3d2eec4fe41c849b80c8d83662c0e44a8b291a964c'
|
|
|
|
'f2f07038'), 25),
|
|
|
|
(bytes.fromhex('56fa6aa75548099dcc37d7f03425e0c3'), None),],
|
|
|
|
"sha256": [
|
|
|
|
(bytes.fromhex('120fb6cffcf8b32c43e7225256c4f837'
|
|
|
|
'a86548c92ccc35480805987cb70be17b'), None),
|
|
|
|
(bytes.fromhex('ae4d0c95af6b46d32d0adff928f06dd0'
|
|
|
|
'2a303f8ef3c251dfd6e2d85a95474c43'), None),
|
|
|
|
(bytes.fromhex('c5e478d59288c841aa530db6845c4c8d'
|
|
|
|
'962893a001ce4e11a4963873aa98134a'), None),
|
|
|
|
#(bytes.fromhex('cf81c66fe8cfc04d1f31ecb65dab4089'
|
|
|
|
# 'f7f179e89b3b0bcb17ad10e3ac6eba46'), None),
|
|
|
|
(bytes.fromhex('348c89dbcbd32b2f32d814b8116e84cf2b17'
|
|
|
|
'347ebc1800181c4e2a1fb8dd53e1c635518c7dac47e9'), 40),
|
|
|
|
(bytes.fromhex('89b69d0516f829893c696226650a8687'), None),],
|
|
|
|
"sha512": [
|
|
|
|
(bytes.fromhex('867f70cf1ade02cff3752599a3a53dc4af34c7a669815ae5'
|
|
|
|
'd513554e1c8cf252c02d470a285a0501bad999bfe943c08f'
|
|
|
|
'050235d7d68b1da55e63f73b60a57fce'), None),
|
|
|
|
(bytes.fromhex('e1d9c16aa681708a45f5c7c4e215ceb66e011a2e9f004071'
|
|
|
|
'3f18aefdb866d53cf76cab2868a39b9f7840edce4fef5a82'
|
|
|
|
'be67335c77a6068e04112754f27ccf4e'), None),
|
|
|
|
(bytes.fromhex('d197b1b33db0143e018b12f3d1d1479e6cdebdcc97c5c0f8'
|
|
|
|
'7f6902e072f457b5143f30602641b3d55cd335988cb36b84'
|
|
|
|
'376060ecd532e039b742a239434af2d5'), None),
|
|
|
|
(bytes.fromhex('8c0511f4c6e597c6ac6315d8f0362e225f3c501495ba23b8'
|
|
|
|
'68c005174dc4ee71115b59f9e60cd9532fa33e0f75aefe30'
|
|
|
|
'225c583a186cd82bd4daea9724a3d3b8'), 64),
|
|
|
|
(bytes.fromhex('9d9e9c4cd21fe4be24d5b8244c759665'), None),],
|
|
|
|
}
|
|
|
|
|
2013-10-19 14:40:49 -03:00
|
|
|
def _test_pbkdf2_hmac(self, pbkdf2):
|
2013-10-12 19:52:43 -03:00
|
|
|
for digest_name, results in self.pbkdf2_results.items():
|
|
|
|
for i, vector in enumerate(self.pbkdf2_test_vectors):
|
|
|
|
password, salt, rounds, dklen = vector
|
|
|
|
expected, overwrite_dklen = results[i]
|
|
|
|
if overwrite_dklen:
|
|
|
|
dklen = overwrite_dklen
|
|
|
|
out = pbkdf2(digest_name, password, salt, rounds, dklen)
|
|
|
|
self.assertEqual(out, expected,
|
|
|
|
(digest_name, password, salt, rounds, dklen))
|
|
|
|
out = pbkdf2(digest_name, memoryview(password),
|
|
|
|
memoryview(salt), rounds, dklen)
|
|
|
|
out = pbkdf2(digest_name, bytearray(password),
|
|
|
|
bytearray(salt), rounds, dklen)
|
|
|
|
self.assertEqual(out, expected)
|
|
|
|
if dklen is None:
|
|
|
|
out = pbkdf2(digest_name, password, salt, rounds)
|
|
|
|
self.assertEqual(out, expected,
|
|
|
|
(digest_name, password, salt, rounds))
|
|
|
|
|
|
|
|
self.assertRaises(TypeError, pbkdf2, b'sha1', b'pass', b'salt', 1)
|
|
|
|
self.assertRaises(TypeError, pbkdf2, 'sha1', 'pass', 'salt', 1)
|
|
|
|
self.assertRaises(ValueError, pbkdf2, 'sha1', b'pass', b'salt', 0)
|
|
|
|
self.assertRaises(ValueError, pbkdf2, 'sha1', b'pass', b'salt', -1)
|
|
|
|
self.assertRaises(ValueError, pbkdf2, 'sha1', b'pass', b'salt', 1, 0)
|
|
|
|
self.assertRaises(ValueError, pbkdf2, 'sha1', b'pass', b'salt', 1, -1)
|
|
|
|
with self.assertRaisesRegex(ValueError, 'unsupported hash type'):
|
|
|
|
pbkdf2('unknown', b'pass', b'salt', 1)
|
|
|
|
|
2013-10-19 14:40:49 -03:00
|
|
|
def test_pbkdf2_hmac_py(self):
|
|
|
|
self._test_pbkdf2_hmac(py_hashlib.pbkdf2_hmac)
|
2005-08-21 15:45:59 -03:00
|
|
|
|
2013-10-19 14:40:49 -03:00
|
|
|
@unittest.skipUnless(hasattr(c_hashlib, 'pbkdf2_hmac'),
|
|
|
|
' test requires OpenSSL > 1.0')
|
|
|
|
def test_pbkdf2_hmac_c(self):
|
|
|
|
self._test_pbkdf2_hmac(c_hashlib.pbkdf2_hmac)
|
2013-10-19 09:12:02 -03:00
|
|
|
|
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
if __name__ == "__main__":
|
2013-06-12 22:25:59 -03:00
|
|
|
unittest.main()
|