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