Added SelfTest module + some fixes
[python-cryptoplus.git] / src / SelfTest / Hash / test_MD5.py
blob9ab4304e9fb3866e861ee8745edddd6980826b74
1 # -*- coding: utf-8 -*-
3 # SelfTest/Hash/MD5.py: Self-test for the MD5 hash function
5 # =======================================================================
6 # Copyright (C) 2008 Dwayne C. Litzenberger <dlitz@dlitz.net>
8 # Permission is hereby granted, free of charge, to any person obtaining
9 # a copy of this software and associated documentation files (the
10 # "Software"), to deal in the Software without restriction, including
11 # without limitation the rights to use, copy, modify, merge, publish,
12 # distribute, sublicense, and/or sell copies of the Software, and to
13 # permit persons to whom the Software is furnished to do so.
15 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 # =======================================================================
29 """Self-test suite for CryptoPlus.Hash.MD5"""
31 __revision__ = "$Id$"
33 # This is a list of (expected_result, input[, description]) tuples.
34 test_data = [
35 # Test vectors from RFC 1321
36 ('d41d8cd98f00b204e9800998ecf8427e', '', "'' (empty string)"),
37 ('0cc175b9c0f1b6a831c399e269772661', 'a'),
38 ('900150983cd24fb0d6963f7d28e17f72', 'abc'),
39 ('f96b697d7cb7938d525a2f31aaf161d0', 'message digest'),
41 ('c3fcd3d76192e4007dfb496cca67e13b', 'abcdefghijklmnopqrstuvwxyz',
42 'a-z'),
44 ('d174ab98d277d9f5a5611c2c9f419d9f',
45 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
46 'A-Z, a-z, 0-9'),
48 ('57edf4a22be3c955ac49da2e2107b67a',
49 '1234567890123456789012345678901234567890123456'
50 + '7890123456789012345678901234567890',
51 "'1234567890' * 8"),
54 def get_tests():
55 from CryptoPlus.Hash import MD5
56 from common import make_hash_tests
57 return make_hash_tests(MD5, "MD5", test_data)
59 if __name__ == '__main__':
60 import unittest
61 suite = lambda: unittest.TestSuite(get_tests())
62 unittest.main(defaultTest='suite')
64 # vim:set ts=4 sw=4 sts=4 expandtab: