test_ARC2.py 4.8 KB

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