OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 # |
| 3 # SelfTest/Cipher/ARC2.py: Self-test for the Alleged-RC2 cipher |
| 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.Cipher.ARC2""" |
| 26 |
| 27 __revision__ = "$Id$" |
| 28 |
| 29 from common import dict # For compatibility with Python 2.1 and 2.2 |
| 30 |
| 31 import unittest |
| 32 from Crypto.Util.py3compat import * |
| 33 |
| 34 # This is a list of (plaintext, ciphertext, key[, description[, extra_params]])
tuples. |
| 35 test_data = [ |
| 36 # Test vectors from RFC 2268 |
| 37 |
| 38 # 63-bit effective key length |
| 39 ('0000000000000000', 'ebb773f993278eff', '0000000000000000', |
| 40 'RFC2268-1', dict(effective_keylen=63)), |
| 41 |
| 42 # 64-bit effective key length |
| 43 ('ffffffffffffffff', '278b27e42e2f0d49', 'ffffffffffffffff', |
| 44 'RFC2268-2', dict(effective_keylen=64)), |
| 45 ('1000000000000001', '30649edf9be7d2c2', '3000000000000000', |
| 46 'RFC2268-3', dict(effective_keylen=64)), |
| 47 ('0000000000000000', '61a8a244adacccf0', '88', |
| 48 'RFC2268-4', dict(effective_keylen=64)), |
| 49 ('0000000000000000', '6ccf4308974c267f', '88bca90e90875a', |
| 50 'RFC2268-5', dict(effective_keylen=64)), |
| 51 ('0000000000000000', '1a807d272bbe5db1', '88bca90e90875a7f0f79c384627bafb2', |
| 52 'RFC2268-6', dict(effective_keylen=64)), |
| 53 |
| 54 # 128-bit effective key length |
| 55 ('0000000000000000', '2269552ab0f85ca6', '88bca90e90875a7f0f79c384627bafb2', |
| 56 "RFC2268-7", dict(effective_keylen=128)), |
| 57 ('0000000000000000', '5b78d3a43dfff1f1', |
| 58 '88bca90e90875a7f0f79c384627bafb216f80a6f85920584c42fceb0be255daf1e', |
| 59 "RFC2268-8", dict(effective_keylen=129)), |
| 60 |
| 61 # Test vectors from PyCrypto 2.0.1's testdata.py |
| 62 # 1024-bit effective key length |
| 63 ('0000000000000000', '624fb3e887419e48', '5068696c6970476c617373', |
| 64 'PCTv201-0'), |
| 65 ('ffffffffffffffff', '79cadef44c4a5a85', '5068696c6970476c617373', |
| 66 'PCTv201-1'), |
| 67 ('0001020304050607', '90411525b34e4c2c', '5068696c6970476c617373', |
| 68 'PCTv201-2'), |
| 69 ('0011223344556677', '078656aaba61cbfb', '5068696c6970476c617373', |
| 70 'PCTv201-3'), |
| 71 ('0000000000000000', 'd7bcc5dbb4d6e56a', 'ffffffffffffffff', |
| 72 'PCTv201-4'), |
| 73 ('ffffffffffffffff', '7259018ec557b357', 'ffffffffffffffff', |
| 74 'PCTv201-5'), |
| 75 ('0001020304050607', '93d20a497f2ccb62', 'ffffffffffffffff', |
| 76 'PCTv201-6'), |
| 77 ('0011223344556677', 'cb15a7f819c0014d', 'ffffffffffffffff', |
| 78 'PCTv201-7'), |
| 79 ('0000000000000000', '63ac98cdf3843a7a', 'ffffffffffffffff506574657247726565
6e6177617953e5ffe553', |
| 80 'PCTv201-8'), |
| 81 ('ffffffffffffffff', '3fb49e2fa12371dd', 'ffffffffffffffff506574657247726565
6e6177617953e5ffe553', |
| 82 'PCTv201-9'), |
| 83 ('0001020304050607', '46414781ab387d5f', 'ffffffffffffffff506574657247726565
6e6177617953e5ffe553', |
| 84 'PCTv201-10'), |
| 85 ('0011223344556677', 'be09dc81feaca271', 'ffffffffffffffff506574657247726565
6e6177617953e5ffe553', |
| 86 'PCTv201-11'), |
| 87 ('0000000000000000', 'e64221e608be30ab', '53e5ffe553', |
| 88 'PCTv201-12'), |
| 89 ('ffffffffffffffff', '862bc60fdcd4d9a9', '53e5ffe553', |
| 90 'PCTv201-13'), |
| 91 ('0001020304050607', '6a34da50fa5e47de', '53e5ffe553', |
| 92 'PCTv201-14'), |
| 93 ('0011223344556677', '584644c34503122c', '53e5ffe553', |
| 94 'PCTv201-15'), |
| 95 ] |
| 96 |
| 97 class BufferOverflowTest(unittest.TestCase): |
| 98 # Test a buffer overflow found in older versions of PyCrypto |
| 99 |
| 100 def setUp(self): |
| 101 global ARC2 |
| 102 from Crypto.Cipher import ARC2 |
| 103 |
| 104 def runTest(self): |
| 105 """ARC2 with keylength > 128""" |
| 106 key = "x" * 16384 |
| 107 mode = ARC2.MODE_ECB |
| 108 self.assertRaises(ValueError, ARC2.new, key, mode) |
| 109 |
| 110 def get_tests(config={}): |
| 111 from Crypto.Cipher import ARC2 |
| 112 from common import make_block_tests |
| 113 |
| 114 tests = make_block_tests(ARC2, "ARC2", test_data) |
| 115 tests.append(BufferOverflowTest()) |
| 116 |
| 117 return tests |
| 118 |
| 119 if __name__ == '__main__': |
| 120 import unittest |
| 121 suite = lambda: unittest.TestSuite(get_tests()) |
| 122 unittest.main(defaultTest='suite') |
| 123 |
| 124 # vim:set ts=4 sw=4 sts=4 expandtab: |
OLD | NEW |