OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 # |
| 3 # SelfTest/Hash/MD4.py: Self-test for the MD4 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.MD4""" |
| 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 from RFC 1320 |
| 34 ('31d6cfe0d16ae931b73c59d7e0c089c0', '', "'' (empty string)"), |
| 35 ('bde52cb31de33e46245e05fbdbd6fb24', 'a'), |
| 36 ('a448017aaf21d8525fc10ae87aa6729d', 'abc'), |
| 37 ('d9130a8164549fe818874806e1c7014b', 'message digest'), |
| 38 |
| 39 ('d79e1c308aa5bbcdeea8ed63df412da9', 'abcdefghijklmnopqrstuvwxyz', |
| 40 'a-z'), |
| 41 |
| 42 ('043f8582f241db351ce627e153e7f0e4', |
| 43 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', |
| 44 'A-Z, a-z, 0-9'), |
| 45 |
| 46 ('e33b4ddc9c38f2199c3e7b164fcc0536', |
| 47 '1234567890123456789012345678901234567890123456' |
| 48 + '7890123456789012345678901234567890', |
| 49 "'1234567890' * 8"), |
| 50 ] |
| 51 |
| 52 def get_tests(config={}): |
| 53 from Crypto.Hash import MD4 |
| 54 from common import make_hash_tests |
| 55 return make_hash_tests(MD4, "MD4", test_data, |
| 56 digest_size=16, |
| 57 oid="\x06\x08\x2a\x86\x48\x86\xf7\x0d\x02\x04") |
| 58 |
| 59 if __name__ == '__main__': |
| 60 import unittest |
| 61 suite = lambda: unittest.TestSuite(get_tests()) |
| 62 unittest.main(defaultTest='suite') |
| 63 |
| 64 # vim:set ts=4 sw=4 sts=4 expandtab: |
OLD | NEW |