test_MD5.py 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # -*- coding: utf-8 -*-
  2. #
  3. # SelfTest/Hash/MD5.py: Self-test for the MD5 hash function
  4. #
  5. # Written in 2008 by Dwayne C. Litzenberger <dlitz@dlitz.net>
  6. #
  7. # ===================================================================
  8. # The contents of this file are dedicated to the public domain. To
  9. # the extent that dedication to the public domain is not available,
  10. # everyone is granted a worldwide, perpetual, royalty-free,
  11. # non-exclusive license to exercise all rights associated with the
  12. # contents of this file for any purpose whatsoever.
  13. # No rights are reserved.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  19. # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  20. # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22. # SOFTWARE.
  23. # ===================================================================
  24. """Self-test suite for Crypto.Hash.MD5"""
  25. from tls.Crypto.Util.py3compat import *
  26. from tls.Crypto.Hash import MD5
  27. from binascii import unhexlify
  28. import unittest
  29. from tls.Crypto.SelfTest.st_common import list_test_cases
  30. # This is a list of (expected_result, input[, description]) tuples.
  31. test_data = [
  32. # Test vectors from RFC 1321
  33. ('d41d8cd98f00b204e9800998ecf8427e', '', "'' (empty string)"),
  34. ('0cc175b9c0f1b6a831c399e269772661', 'a'),
  35. ('900150983cd24fb0d6963f7d28e17f72', 'abc'),
  36. ('f96b697d7cb7938d525a2f31aaf161d0', 'message digest'),
  37. ('c3fcd3d76192e4007dfb496cca67e13b', 'abcdefghijklmnopqrstuvwxyz',
  38. 'a-z'),
  39. ('d174ab98d277d9f5a5611c2c9f419d9f',
  40. 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
  41. 'A-Z, a-z, 0-9'),
  42. ('57edf4a22be3c955ac49da2e2107b67a',
  43. '1234567890123456789012345678901234567890123456'
  44. + '7890123456789012345678901234567890',
  45. "'1234567890' * 8"),
  46. # https://www.cosic.esat.kuleuven.be/nessie/testvectors/hash/md5/Md5-128.unverified.test-vectors
  47. ('57EDF4A22BE3C955AC49DA2E2107B67A', '1234567890' * 8, 'Set 1, vector #7'),
  48. ('7707D6AE4E027C70EEA2A935C2296F21', 'a'*1000000, 'Set 1, vector #8'),
  49. ]
  50. class Md5IterTest(unittest.TestCase):
  51. def runTest(self):
  52. message = b("\x00") * 16
  53. result1 = "4AE71336E44BF9BF79D2752E234818A5".lower()
  54. result2 = "1A83F51285E4D89403D00C46EF8508FE".lower()
  55. h = MD5.new(message)
  56. message = h.digest()
  57. self.assertEqual(h.hexdigest(), result1)
  58. for _ in range(99999):
  59. h = MD5.new(message)
  60. message = h.digest()
  61. self.assertEqual(h.hexdigest(), result2)
  62. def get_tests(config={}):
  63. from .common import make_hash_tests
  64. tests = make_hash_tests(MD5, "MD5", test_data,
  65. digest_size=16,
  66. oid="1.2.840.113549.2.5")
  67. if config.get('slow_tests'):
  68. tests += [ Md5IterTest() ]
  69. return tests
  70. if __name__ == '__main__':
  71. import unittest
  72. suite = lambda: unittest.TestSuite(get_tests())
  73. unittest.main(defaultTest='suite')
  74. # vim:set ts=4 sw=4 sts=4 expandtab: