test_ChaCha20.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. # ===================================================================
  2. #
  3. # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions
  8. # are met:
  9. #
  10. # 1. Redistributions of source code must retain the above copyright
  11. # notice, this list of conditions and the following disclaimer.
  12. # 2. Redistributions in binary form must reproduce the above copyright
  13. # notice, this list of conditions and the following disclaimer in
  14. # the documentation and/or other materials provided with the
  15. # distribution.
  16. #
  17. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  20. # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  21. # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  22. # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23. # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24. # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  25. # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  27. # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  28. # POSSIBILITY OF SUCH DAMAGE.
  29. # ===================================================================
  30. import os
  31. import re
  32. import unittest
  33. from binascii import hexlify, unhexlify
  34. from Crypto.Util.py3compat import b, tobytes, bchr
  35. from Crypto.Util.strxor import strxor_c
  36. from Crypto.SelfTest.st_common import list_test_cases
  37. from Crypto.Cipher import ChaCha20
  38. class ChaCha20Test(unittest.TestCase):
  39. def test_new_positive(self):
  40. cipher = ChaCha20.new(key=b("0")*32, nonce=b"0"*8)
  41. self.assertEqual(cipher.nonce, b"0" * 8)
  42. cipher = ChaCha20.new(key=b("0")*32, nonce=b"0"*12)
  43. self.assertEqual(cipher.nonce, b"0" * 12)
  44. def test_new_negative(self):
  45. new = ChaCha20.new
  46. self.assertRaises(TypeError, new)
  47. self.assertRaises(TypeError, new, nonce=b("0"))
  48. self.assertRaises(ValueError, new, nonce=b("0")*8, key=b("0"))
  49. self.assertRaises(ValueError, new, nonce=b("0"), key=b("0")*32)
  50. def test_default_nonce(self):
  51. cipher1 = ChaCha20.new(key=bchr(1) * 32)
  52. cipher2 = ChaCha20.new(key=bchr(1) * 32)
  53. self.assertEquals(len(cipher1.nonce), 8)
  54. self.assertNotEqual(cipher1.nonce, cipher2.nonce)
  55. def test_nonce(self):
  56. key = b'A' * 32
  57. nonce1 = b'P' * 8
  58. cipher1 = ChaCha20.new(key=key, nonce=nonce1)
  59. self.assertEqual(nonce1, cipher1.nonce)
  60. nonce2 = b'Q' * 12
  61. cipher2 = ChaCha20.new(key=key, nonce=nonce2)
  62. self.assertEqual(nonce2, cipher2.nonce)
  63. def test_eiter_encrypt_or_decrypt(self):
  64. """Verify that a cipher cannot be used for both decrypting and encrypting"""
  65. c1 = ChaCha20.new(key=b("5") * 32, nonce=b("6") * 8)
  66. c1.encrypt(b("8"))
  67. self.assertRaises(TypeError, c1.decrypt, b("9"))
  68. c2 = ChaCha20.new(key=b("5") * 32, nonce=b("6") * 8)
  69. c2.decrypt(b("8"))
  70. self.assertRaises(TypeError, c2.encrypt, b("9"))
  71. def test_round_trip(self):
  72. pt = b("A") * 1024
  73. c1 = ChaCha20.new(key=b("5") * 32, nonce=b("6") * 8)
  74. c2 = ChaCha20.new(key=b("5") * 32, nonce=b("6") * 8)
  75. ct = c1.encrypt(pt)
  76. self.assertEqual(c2.decrypt(ct), pt)
  77. self.assertEqual(c1.encrypt(b("")), b(""))
  78. self.assertEqual(c2.decrypt(b("")), b(""))
  79. def test_streaming(self):
  80. """Verify that an arbitrary number of bytes can be encrypted/decrypted"""
  81. from Crypto.Hash import SHA1
  82. segments = (1, 3, 5, 7, 11, 17, 23)
  83. total = sum(segments)
  84. pt = b("")
  85. while len(pt) < total:
  86. pt += SHA1.new(pt).digest()
  87. cipher1 = ChaCha20.new(key=b("7") * 32, nonce=b("t") * 8)
  88. ct = cipher1.encrypt(pt)
  89. cipher2 = ChaCha20.new(key=b("7") * 32, nonce=b("t") * 8)
  90. cipher3 = ChaCha20.new(key=b("7") * 32, nonce=b("t") * 8)
  91. idx = 0
  92. for segment in segments:
  93. self.assertEqual(cipher2.decrypt(ct[idx:idx+segment]), pt[idx:idx+segment])
  94. self.assertEqual(cipher3.encrypt(pt[idx:idx+segment]), ct[idx:idx+segment])
  95. idx += segment
  96. def test_seek(self):
  97. cipher1 = ChaCha20.new(key=b("9") * 32, nonce=b("e") * 8)
  98. offset = 64 * 900 + 7
  99. pt = b("1") * 64
  100. cipher1.encrypt(b("0") * offset)
  101. ct1 = cipher1.encrypt(pt)
  102. cipher2 = ChaCha20.new(key=b("9") * 32, nonce=b("e") * 8)
  103. cipher2.seek(offset)
  104. ct2 = cipher2.encrypt(pt)
  105. self.assertEquals(ct1, ct2)
  106. def test_seek_tv(self):
  107. # Test Vector #4, A.1 from
  108. # http://tools.ietf.org/html/draft-nir-cfrg-chacha20-poly1305-04
  109. key = bchr(0) + bchr(255) + bchr(0) * 30
  110. nonce = bchr(0) * 8
  111. cipher = ChaCha20.new(key=key, nonce=nonce)
  112. cipher.seek(64 * 2)
  113. expected_key_stream = unhexlify(b(
  114. "72d54dfbf12ec44b362692df94137f32"
  115. "8fea8da73990265ec1bbbea1ae9af0ca"
  116. "13b25aa26cb4a648cb9b9d1be65b2c09"
  117. "24a66c54d545ec1b7374f4872e99f096"
  118. ))
  119. ct = cipher.encrypt(bchr(0) * len(expected_key_stream))
  120. self.assertEqual(expected_key_stream, ct)
  121. def test_rfc7539(self):
  122. # from https://tools.ietf.org/html/rfc7539 Annex A.1
  123. # Each item is: key, nonce, block #, plaintext, ciphertext
  124. tvs = [
  125. # Test Vector #1
  126. (
  127. "00"*32,
  128. "00"*12,
  129. 0,
  130. "00"*16*4,
  131. "76b8e0ada0f13d90405d6ae55386bd28"
  132. "bdd219b8a08ded1aa836efcc8b770dc7"
  133. "da41597c5157488d7724e03fb8d84a37"
  134. "6a43b8f41518a11cc387b669b2ee6586"
  135. ),
  136. # Test Vector #2
  137. (
  138. "00"*31 + "01",
  139. "00"*11 + "02",
  140. 1,
  141. "416e79207375626d697373696f6e2074"
  142. "6f20746865204945544620696e74656e"
  143. "6465642062792074686520436f6e7472"
  144. "696275746f7220666f72207075626c69"
  145. "636174696f6e20617320616c6c206f72"
  146. "2070617274206f6620616e2049455446"
  147. "20496e7465726e65742d447261667420"
  148. "6f722052464320616e6420616e792073"
  149. "746174656d656e74206d616465207769"
  150. "7468696e2074686520636f6e74657874"
  151. "206f6620616e20494554462061637469"
  152. "7669747920697320636f6e7369646572"
  153. "656420616e20224945544620436f6e74"
  154. "7269627574696f6e222e205375636820"
  155. "73746174656d656e747320696e636c75"
  156. "6465206f72616c2073746174656d656e"
  157. "747320696e2049455446207365737369"
  158. "6f6e732c2061732077656c6c20617320"
  159. "7772697474656e20616e6420656c6563"
  160. "74726f6e696320636f6d6d756e696361"
  161. "74696f6e73206d61646520617420616e"
  162. "792074696d65206f7220706c6163652c"
  163. "20776869636820617265206164647265"
  164. "7373656420746f",
  165. "a3fbf07df3fa2fde4f376ca23e827370"
  166. "41605d9f4f4f57bd8cff2c1d4b7955ec"
  167. "2a97948bd3722915c8f3d337f7d37005"
  168. "0e9e96d647b7c39f56e031ca5eb6250d"
  169. "4042e02785ececfa4b4bb5e8ead0440e"
  170. "20b6e8db09d881a7c6132f420e527950"
  171. "42bdfa7773d8a9051447b3291ce1411c"
  172. "680465552aa6c405b7764d5e87bea85a"
  173. "d00f8449ed8f72d0d662ab052691ca66"
  174. "424bc86d2df80ea41f43abf937d3259d"
  175. "c4b2d0dfb48a6c9139ddd7f76966e928"
  176. "e635553ba76c5c879d7b35d49eb2e62b"
  177. "0871cdac638939e25e8a1e0ef9d5280f"
  178. "a8ca328b351c3c765989cbcf3daa8b6c"
  179. "cc3aaf9f3979c92b3720fc88dc95ed84"
  180. "a1be059c6499b9fda236e7e818b04b0b"
  181. "c39c1e876b193bfe5569753f88128cc0"
  182. "8aaa9b63d1a16f80ef2554d7189c411f"
  183. "5869ca52c5b83fa36ff216b9c1d30062"
  184. "bebcfd2dc5bce0911934fda79a86f6e6"
  185. "98ced759c3ff9b6477338f3da4f9cd85"
  186. "14ea9982ccafb341b2384dd902f3d1ab"
  187. "7ac61dd29c6f21ba5b862f3730e37cfd"
  188. "c4fd806c22f221"
  189. ),
  190. # Test Vector #3
  191. (
  192. "1c9240a5eb55d38af333888604f6b5f0"
  193. "473917c1402b80099dca5cbc207075c0",
  194. "00"*11 + "02",
  195. 42,
  196. "2754776173206272696c6c69672c2061"
  197. "6e642074686520736c6974687920746f"
  198. "7665730a446964206779726520616e64"
  199. "2067696d626c6520696e207468652077"
  200. "6162653a0a416c6c206d696d73792077"
  201. "6572652074686520626f726f676f7665"
  202. "732c0a416e6420746865206d6f6d6520"
  203. "7261746873206f757467726162652e",
  204. "62e6347f95ed87a45ffae7426f27a1df"
  205. "5fb69110044c0d73118effa95b01e5cf"
  206. "166d3df2d721caf9b21e5fb14c616871"
  207. "fd84c54f9d65b283196c7fe4f60553eb"
  208. "f39c6402c42234e32a356b3e764312a6"
  209. "1a5532055716ead6962568f87d3f3f77"
  210. "04c6a8d1bcd1bf4d50d6154b6da731b1"
  211. "87b58dfd728afa36757a797ac188d1"
  212. )
  213. ]
  214. for tv in tvs:
  215. key = unhexlify(tv[0])
  216. nonce = unhexlify(tv[1])
  217. offset = tv[2] * 64
  218. pt = unhexlify(tv[3])
  219. ct_expect = unhexlify(tv[4])
  220. cipher = ChaCha20.new(key=key, nonce=nonce)
  221. if offset != 0:
  222. cipher.seek(offset)
  223. ct = cipher.encrypt(pt)
  224. assert(ct == ct_expect)
  225. class XChaCha20Test(unittest.TestCase):
  226. # From https://tools.ietf.org/html/draft-arciszewski-xchacha-03
  227. def test_hchacha20(self):
  228. # Section 2.2.1
  229. from Crypto.Cipher.ChaCha20 import _HChaCha20
  230. key = b"00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:0f:10:11:12:13:14:15:16:17:18:19:1a:1b:1c:1d:1e:1f"
  231. key = unhexlify(key.replace(b":", b""))
  232. nonce = b"00:00:00:09:00:00:00:4a:00:00:00:00:31:41:59:27"
  233. nonce = unhexlify(nonce.replace(b":", b""))
  234. subkey = _HChaCha20(key, nonce)
  235. expected = b"82413b42 27b27bfe d30e4250 8a877d73 a0f9e4d5 8a74a853 c12ec413 26d3ecdc"
  236. expected = unhexlify(expected.replace(b" ", b""))
  237. self.assertEqual(subkey, expected)
  238. def test_nonce(self):
  239. key = b'A' * 32
  240. nonce = b'P' * 24
  241. cipher = ChaCha20.new(key=key, nonce=nonce)
  242. self.assertEqual(nonce, cipher.nonce)
  243. def test_encrypt(self):
  244. # Section A.3.2
  245. pt = b"""
  246. 5468652064686f6c65202870726f6e6f756e6365642022646f6c652229206973
  247. 20616c736f206b6e6f776e2061732074686520417369617469632077696c6420
  248. 646f672c2072656420646f672c20616e642077686973746c696e6720646f672e
  249. 2049742069732061626f7574207468652073697a65206f662061204765726d61
  250. 6e20736865706865726420627574206c6f6f6b73206d6f7265206c696b652061
  251. 206c6f6e672d6c656767656420666f782e205468697320686967686c7920656c
  252. 757369766520616e6420736b696c6c6564206a756d70657220697320636c6173
  253. 736966696564207769746820776f6c7665732c20636f796f7465732c206a6163
  254. 6b616c732c20616e6420666f78657320696e20746865207461786f6e6f6d6963
  255. 2066616d696c792043616e696461652e"""
  256. pt = unhexlify(pt.replace(b"\n", b"").replace(b" ", b""))
  257. key = unhexlify(b"808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9f")
  258. iv = unhexlify(b"404142434445464748494a4b4c4d4e4f5051525354555658")
  259. ct = b"""
  260. 7d0a2e6b7f7c65a236542630294e063b7ab9b555a5d5149aa21e4ae1e4fbce87
  261. ecc8e08a8b5e350abe622b2ffa617b202cfad72032a3037e76ffdcdc4376ee05
  262. 3a190d7e46ca1de04144850381b9cb29f051915386b8a710b8ac4d027b8b050f
  263. 7cba5854e028d564e453b8a968824173fc16488b8970cac828f11ae53cabd201
  264. 12f87107df24ee6183d2274fe4c8b1485534ef2c5fbc1ec24bfc3663efaa08bc
  265. 047d29d25043532db8391a8a3d776bf4372a6955827ccb0cdd4af403a7ce4c63
  266. d595c75a43e045f0cce1f29c8b93bd65afc5974922f214a40b7c402cdb91ae73
  267. c0b63615cdad0480680f16515a7ace9d39236464328a37743ffc28f4ddb324f4
  268. d0f5bbdc270c65b1749a6efff1fbaa09536175ccd29fb9e6057b307320d31683
  269. 8a9c71f70b5b5907a66f7ea49aadc409"""
  270. ct = unhexlify(ct.replace(b"\n", b"").replace(b" ", b""))
  271. cipher = ChaCha20.new(key=key, nonce=iv)
  272. cipher.seek(64) # Counter = 1
  273. ct_test = cipher.encrypt(pt)
  274. self.assertEqual(ct, ct_test)
  275. class ByteArrayTest(unittest.TestCase):
  276. """Verify we can encrypt or decrypt bytearrays"""
  277. def runTest(self):
  278. data = b"0123"
  279. key = b"9" * 32
  280. nonce = b"t" * 8
  281. # Encryption
  282. data_ba = bytearray(data)
  283. key_ba = bytearray(key)
  284. nonce_ba = bytearray(nonce)
  285. cipher1 = ChaCha20.new(key=key, nonce=nonce)
  286. ct = cipher1.encrypt(data)
  287. cipher2 = ChaCha20.new(key=key_ba, nonce=nonce_ba)
  288. key_ba[:1] = b'\xFF'
  289. nonce_ba[:1] = b'\xFF'
  290. ct_test = cipher2.encrypt(data_ba)
  291. self.assertEqual(ct, ct_test)
  292. self.assertEqual(cipher1.nonce, cipher2.nonce)
  293. # Decryption
  294. key_ba = bytearray(key)
  295. nonce_ba = bytearray(nonce)
  296. ct_ba = bytearray(ct)
  297. cipher3 = ChaCha20.new(key=key_ba, nonce=nonce_ba)
  298. key_ba[:1] = b'\xFF'
  299. nonce_ba[:1] = b'\xFF'
  300. pt_test = cipher3.decrypt(ct_ba)
  301. self.assertEqual(data, pt_test)
  302. class MemoryviewTest(unittest.TestCase):
  303. """Verify we can encrypt or decrypt bytearrays"""
  304. def runTest(self):
  305. data = b"0123"
  306. key = b"9" * 32
  307. nonce = b"t" * 8
  308. # Encryption
  309. data_mv = memoryview(bytearray(data))
  310. key_mv = memoryview(bytearray(key))
  311. nonce_mv = memoryview(bytearray(nonce))
  312. cipher1 = ChaCha20.new(key=key, nonce=nonce)
  313. ct = cipher1.encrypt(data)
  314. cipher2 = ChaCha20.new(key=key_mv, nonce=nonce_mv)
  315. key_mv[:1] = b'\xFF'
  316. nonce_mv[:1] = b'\xFF'
  317. ct_test = cipher2.encrypt(data_mv)
  318. self.assertEqual(ct, ct_test)
  319. self.assertEqual(cipher1.nonce, cipher2.nonce)
  320. # Decryption
  321. key_mv = memoryview(bytearray(key))
  322. nonce_mv = memoryview(bytearray(nonce))
  323. ct_mv = memoryview(bytearray(ct))
  324. cipher3 = ChaCha20.new(key=key_mv, nonce=nonce_mv)
  325. key_mv[:1] = b'\xFF'
  326. nonce_mv[:1] = b'\xFF'
  327. pt_test = cipher3.decrypt(ct_mv)
  328. self.assertEqual(data, pt_test)
  329. class ChaCha20_AGL_NIR(unittest.TestCase):
  330. # From http://tools.ietf.org/html/draft-agl-tls-chacha20poly1305-04
  331. # and http://tools.ietf.org/html/draft-nir-cfrg-chacha20-poly1305-04
  332. tv = [
  333. ( "00" * 32,
  334. "00" * 8,
  335. "76b8e0ada0f13d90405d6ae55386bd28bdd219b8a08ded1aa836efcc"
  336. "8b770dc7da41597c5157488d7724e03fb8d84a376a43b8f41518a11c"
  337. "c387b669b2ee6586"
  338. "9f07e7be5551387a98ba977c732d080d"
  339. "cb0f29a048e3656912c6533e32ee7aed"
  340. "29b721769ce64e43d57133b074d839d5"
  341. "31ed1f28510afb45ace10a1f4b794d6f"
  342. ),
  343. ( "00" * 31 + "01",
  344. "00" * 8,
  345. "4540f05a9f1fb296d7736e7b208e3c96eb4fe1834688d2604f450952"
  346. "ed432d41bbe2a0b6ea7566d2a5d1e7e20d42af2c53d792b1c43fea81"
  347. "7e9ad275ae546963"
  348. "3aeb5224ecf849929b9d828db1ced4dd"
  349. "832025e8018b8160b82284f3c949aa5a"
  350. "8eca00bbb4a73bdad192b5c42f73f2fd"
  351. "4e273644c8b36125a64addeb006c13a0"
  352. ),
  353. ( "00" * 32,
  354. "00" * 7 + "01",
  355. "de9cba7bf3d69ef5e786dc63973f653a0b49e015adbff7134fcb7df1"
  356. "37821031e85a050278a7084527214f73efc7fa5b5277062eb7a0433e"
  357. "445f41e3"
  358. ),
  359. ( "00" * 32,
  360. "01" + "00" * 7,
  361. "ef3fdfd6c61578fbf5cf35bd3dd33b8009631634d21e42ac33960bd1"
  362. "38e50d32111e4caf237ee53ca8ad6426194a88545ddc497a0b466e7d"
  363. "6bbdb0041b2f586b"
  364. ),
  365. ( "000102030405060708090a0b0c0d0e0f101112131415161718191a1b"
  366. "1c1d1e1f",
  367. "0001020304050607",
  368. "f798a189f195e66982105ffb640bb7757f579da31602fc93ec01ac56"
  369. "f85ac3c134a4547b733b46413042c9440049176905d3be59ea1c53f1"
  370. "5916155c2be8241a38008b9a26bc35941e2444177c8ade6689de9526"
  371. "4986d95889fb60e84629c9bd9a5acb1cc118be563eb9b3a4a472f82e"
  372. "09a7e778492b562ef7130e88dfe031c79db9d4f7c7a899151b9a4750"
  373. "32b63fc385245fe054e3dd5a97a5f576fe064025d3ce042c566ab2c5"
  374. "07b138db853e3d6959660996546cc9c4a6eafdc777c040d70eaf46f7"
  375. "6dad3979e5c5360c3317166a1c894c94a371876a94df7628fe4eaaf2"
  376. "ccb27d5aaae0ad7ad0f9d4b6ad3b54098746d4524d38407a6deb3ab7"
  377. "8fab78c9"
  378. ),
  379. ( "00" * 32,
  380. "00" * 7 + "02",
  381. "c2c64d378cd536374ae204b9ef933fcd"
  382. "1a8b2288b3dfa49672ab765b54ee27c7"
  383. "8a970e0e955c14f3a88e741b97c286f7"
  384. "5f8fc299e8148362fa198a39531bed6d"
  385. ),
  386. ]
  387. def runTest(self):
  388. for (key, nonce, stream) in self.tv:
  389. c = ChaCha20.new(key=unhexlify(b(key)), nonce=unhexlify(b(nonce)))
  390. ct = unhexlify(b(stream))
  391. pt = b("\x00") * len(ct)
  392. self.assertEqual(c.encrypt(pt), ct)
  393. class TestOutput(unittest.TestCase):
  394. def runTest(self):
  395. # Encrypt/Decrypt data and test output parameter
  396. key = b'4' * 32
  397. nonce = b'5' * 8
  398. cipher = ChaCha20.new(key=key, nonce=nonce)
  399. pt = b'5' * 16
  400. ct = cipher.encrypt(pt)
  401. output = bytearray(16)
  402. cipher = ChaCha20.new(key=key, nonce=nonce)
  403. res = cipher.encrypt(pt, output=output)
  404. self.assertEqual(ct, output)
  405. self.assertEqual(res, None)
  406. cipher = ChaCha20.new(key=key, nonce=nonce)
  407. res = cipher.decrypt(ct, output=output)
  408. self.assertEqual(pt, output)
  409. self.assertEqual(res, None)
  410. output = memoryview(bytearray(16))
  411. cipher = ChaCha20.new(key=key, nonce=nonce)
  412. cipher.encrypt(pt, output=output)
  413. self.assertEqual(ct, output)
  414. cipher = ChaCha20.new(key=key, nonce=nonce)
  415. cipher.decrypt(ct, output=output)
  416. self.assertEqual(pt, output)
  417. cipher = ChaCha20.new(key=key, nonce=nonce)
  418. self.assertRaises(TypeError, cipher.encrypt, pt, output=b'0'*16)
  419. cipher = ChaCha20.new(key=key, nonce=nonce)
  420. self.assertRaises(TypeError, cipher.decrypt, ct, output=b'0'*16)
  421. shorter_output = bytearray(7)
  422. cipher = ChaCha20.new(key=key, nonce=nonce)
  423. self.assertRaises(ValueError, cipher.encrypt, pt, output=shorter_output)
  424. cipher = ChaCha20.new(key=key, nonce=nonce)
  425. self.assertRaises(ValueError, cipher.decrypt, ct, output=shorter_output)
  426. def get_tests(config={}):
  427. tests = []
  428. tests += list_test_cases(ChaCha20Test)
  429. tests += list_test_cases(XChaCha20Test)
  430. tests.append(ChaCha20_AGL_NIR())
  431. tests.append(ByteArrayTest())
  432. tests.append(MemoryviewTest())
  433. tests.append(TestOutput())
  434. return tests
  435. if __name__ == '__main__':
  436. import unittest
  437. suite = lambda: unittest.TestSuite(get_tests())
  438. unittest.main(defaultTest='suite')