test_RIPEMD160.py 2.6 KB

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