OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 # |
| 3 # SelfTest/Hash/test_SHA.py: Self-test for the SHA-384 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.SHA384""" |
| 26 |
| 27 __revision__ = "$Id$" |
| 28 |
| 29 # Test vectors from various sources |
| 30 # This is a list of (expected_result, input[, description]) tuples. |
| 31 test_data = [ |
| 32 |
| 33 # RFC 4634: Section Page 8.4, "Test 1" |
| 34 ('cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed8086072ba1
e7cc2358baeca134c825a7', 'abc'), |
| 35 |
| 36 # RFC 4634: Section Page 8.4, "Test 2.2" |
| 37 ('09330c33f71147e83d192fc782cd1b4753111b173b3b05d22fa08086e3b0f712fcc7c71a55
7e2db966c3e9fa91746039', 'abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijkl
mnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu'), |
| 38 |
| 39 # RFC 4634: Section Page 8.4, "Test 3" |
| 40 ('9d0e1809716474cb086e834e310a4a1ced149e9c00f248527972cec5704c2a5b07b8b3dc38
ecc4ebae97ddd87f3d8985', 'a' * 10**6, "'a' * 10**6"), |
| 41 |
| 42 # Taken from http://de.wikipedia.org/wiki/Secure_Hash_Algorithm |
| 43 ('38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe7
6f65fbd51ad2f14898b95b', ''), |
| 44 |
| 45 # Example from http://de.wikipedia.org/wiki/Secure_Hash_Algorithm |
| 46 ('71e8383a4cea32d6fd6877495db2ee353542f46fa44bc23100bca48f3366b84e809f0708e8
1041f427c6d5219a286677', |
| 47 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern'), |
| 48 |
| 49 ] |
| 50 |
| 51 def get_tests(config={}): |
| 52 from Crypto.Hash import SHA384 |
| 53 from common import make_hash_tests |
| 54 return make_hash_tests(SHA384, "SHA384", test_data, |
| 55 digest_size=48, |
| 56 oid='\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x02') |
| 57 |
| 58 if __name__ == '__main__': |
| 59 import unittest |
| 60 suite = lambda: unittest.TestSuite(get_tests()) |
| 61 unittest.main(defaultTest='suite') |
| 62 |
| 63 # vim:set ts=4 sw=4 sts=4 expandtab: |
OLD | NEW |