OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 # |
| 3 # SelfTest/Hash/test_SHA512.py: Self-test for the SHA-512 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.SHA512""" |
| 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 ('ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a2192992a27
4fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f', 'abc'), |
| 35 |
| 36 # RFC 4634: Section Page 8.4, "Test 2.1" |
| 37 ('8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018501d289e49
00f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909', 'abcdefghbcdefghicdefgh
ijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqr
stnopqrstu'), |
| 38 |
| 39 # RFC 4634: Section Page 8.4, "Test 3" |
| 40 ('e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973ebde0ff24487
7ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b', 'a' * 10**6, "'a' * 10*
*6"), |
| 41 |
| 42 # Taken from http://de.wikipedia.org/wiki/Secure_Hash_Algorithm |
| 43 ('cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d
85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e', ''), |
| 44 |
| 45 ('af9ed2de700433b803240a552b41b5a472a6ef3fe1431a722b2063c75e9f07451f67a28e37
d09cde769424c96aea6f8971389db9e1993d6c565c3c71b855723c', 'Franz jagt im komplett
verwahrlosten Taxi quer durch Bayern'), |
| 46 ] |
| 47 |
| 48 def get_tests(config={}): |
| 49 from Crypto.Hash import SHA512 |
| 50 from common import make_hash_tests |
| 51 return make_hash_tests(SHA512, "SHA512", test_data, |
| 52 digest_size=64, |
| 53 oid="\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x03") |
| 54 |
| 55 if __name__ == '__main__': |
| 56 import unittest |
| 57 suite = lambda: unittest.TestSuite(get_tests()) |
| 58 unittest.main(defaultTest='suite') |
| 59 |
| 60 # vim:set ts=4 sw=4 sts=4 expandtab: |
OLD | NEW |