test_RIPEMD.py 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # -*- coding: utf-8 -*-
  2. #
  3. # SelfTest/Hash/test_RIPEMD.py: Self-test for the RIPEMD-160 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.RIPEMD"""
  25. __revision__ = "$Id$"
  26. from Crypto.Util.py3compat import *
  27. # This is a list of (expected_result, input[, description]) tuples.
  28. test_data = [
  29. # Test vectors downloaded 2008-09-12 from
  30. # http://homes.esat.kuleuven.be/~bosselae/ripemd160.html
  31. ('9c1185a5c5e9fc54612808977ee8f548b2258d31', '', "'' (empty string)"),
  32. ('0bdc9d2d256b3ee9daae347be6f4dc835a467ffe', 'a'),
  33. ('8eb208f7e05d987a9b044a8e98c6b087f15a0bfc', 'abc'),
  34. ('5d0689ef49d2fae572b881b123a85ffa21595f36', 'message digest'),
  35. ('f71c27109c692c1b56bbdceb5b9d2865b3708dbc',
  36. 'abcdefghijklmnopqrstuvwxyz',
  37. 'a-z'),
  38. ('12a053384a9c0c88e405a06c27dcf49ada62eb2b',
  39. 'abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq',
  40. 'abcdbcd...pnopq'),
  41. ('b0e20b6e3116640286ed3a87a5713079b21f5189',
  42. 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
  43. 'A-Z, a-z, 0-9'),
  44. ('9b752e45573d4b39f4dbd3323cab82bf63326bfb',
  45. '1234567890' * 8,
  46. "'1234567890' * 8"),
  47. ('52783243c1697bdbe16d37f97f68f08325dc1528',
  48. 'a' * 10**6,
  49. '"a" * 10**6'),
  50. ]
  51. def get_tests(config={}):
  52. from Crypto.Hash import RIPEMD
  53. from common import make_hash_tests
  54. return make_hash_tests(RIPEMD, "RIPEMD", test_data,
  55. digest_size=20,
  56. oid="\x06\x05\x2b\x24\x03\02\x01")
  57. if __name__ == '__main__':
  58. import unittest
  59. suite = lambda: unittest.TestSuite(get_tests())
  60. unittest.main(defaultTest='suite')
  61. # vim:set ts=4 sw=4 sts=4 expandtab: