test_MD2.py 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # -*- coding: utf-8 -*-
  2. #
  3. # SelfTest/Hash/MD2.py: Self-test for the MD2 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.MD2"""
  25. from tls.Crypto.Util.py3compat import *
  26. # This is a list of (expected_result, input[, description]) tuples.
  27. test_data = [
  28. # Test vectors from RFC 1319
  29. ('8350e5a3e24c153df2275c9f80692773', '', "'' (empty string)"),
  30. ('32ec01ec4a6dac72c0ab96fb34c0b5d1', 'a'),
  31. ('da853b0d3f88d99b30283a69e6ded6bb', 'abc'),
  32. ('ab4f496bfb2a530b219ff33031fe06b0', 'message digest'),
  33. ('4e8ddff3650292ab5a4108c3aa47940b', 'abcdefghijklmnopqrstuvwxyz',
  34. 'a-z'),
  35. ('da33def2a42df13975352846c30338cd',
  36. 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
  37. 'A-Z, a-z, 0-9'),
  38. ('d5976f79d83d3a0dc9806c3c66f3efd8',
  39. '1234567890123456789012345678901234567890123456'
  40. + '7890123456789012345678901234567890',
  41. "'1234567890' * 8"),
  42. ]
  43. def get_tests(config={}):
  44. from tls.Crypto.Hash import MD2
  45. from .common import make_hash_tests
  46. return make_hash_tests(MD2, "MD2", test_data,
  47. digest_size=16,
  48. oid="1.2.840.113549.2.2")
  49. if __name__ == '__main__':
  50. import unittest
  51. suite = lambda: unittest.TestSuite(get_tests())
  52. unittest.main(defaultTest='suite')
  53. # vim:set ts=4 sw=4 sts=4 expandtab: