AESTests.swift 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. //
  2. // CryptoSwift
  3. //
  4. // Created by Marcin Krzyzanowski on 27/12/14.
  5. // Copyright (C) 2014-2017 Krzyzanowski. All rights reserved.
  6. //
  7. import XCTest
  8. import Foundation
  9. @testable import CryptoSwift
  10. final class AESTests: XCTestCase {
  11. // 128 bit key
  12. let aesKey: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  13. func testAESEncrypt() {
  14. let input: Array<UInt8> = [0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff]
  15. let expected: Array<UInt8> = [0x69, 0xc4, 0xe0, 0xd8, 0x6a, 0x7b, 0x4, 0x30, 0xd8, 0xcd, 0xb7, 0x80, 0x70, 0xb4, 0xc5, 0x5a]
  16. let aes = try! AES(key: aesKey, blockMode: .ECB, padding: .noPadding)
  17. let encrypted = try! aes.encrypt(input)
  18. XCTAssertEqual(encrypted, expected, "encryption failed")
  19. let decrypted = try! aes.decrypt(encrypted)
  20. XCTAssertEqual(decrypted, input, "decryption failed")
  21. }
  22. func testAESEncrypt2() {
  23. let key: Array<UInt8> = [0x36, 0x37, 0x39, 0x66, 0x62, 0x31, 0x64, 0x64, 0x66, 0x37, 0x64, 0x38, 0x31, 0x62, 0x65, 0x65]
  24. let iv: Array<UInt8> = [0x6b, 0x64, 0x66, 0x36, 0x37, 0x33, 0x39, 0x38, 0x44, 0x46, 0x37, 0x33, 0x38, 0x33, 0x66, 0x64]
  25. let input: Array<UInt8> = [0x62, 0x72, 0x61, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
  26. let expected: Array<UInt8> = [0xae, 0x8c, 0x59, 0x95, 0xb2, 0x6f, 0x8e, 0x3d, 0xb0, 0x6f, 0x0a, 0xa5, 0xfe, 0xc4, 0xf0, 0xc2]
  27. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .noPadding)
  28. do {
  29. let encrypted = try aes.encrypt(input)
  30. XCTAssertEqual(encrypted, expected, "encryption failed")
  31. let decrypted = try aes.decrypt(encrypted)
  32. XCTAssertEqual(decrypted, input, "decryption failed")
  33. } catch {
  34. XCTFail("\(error)")
  35. }
  36. }
  37. func testAESEncrypt3() {
  38. let key = "679fb1ddf7d81bee"
  39. let iv = "kdf67398DF7383fd"
  40. let input: Array<UInt8> = [0x62, 0x72, 0x61, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
  41. let expected: Array<UInt8> = [0xae, 0x8c, 0x59, 0x95, 0xb2, 0x6f, 0x8e, 0x3d, 0xb0, 0x6f, 0x0a, 0xa5, 0xfe, 0xc4, 0xf0, 0xc2]
  42. do {
  43. let aes = try AES(key: key, iv: iv, padding: .noPadding)
  44. let encrypted = try aes.encrypt(input)
  45. XCTAssertEqual(encrypted, expected, "encryption failed")
  46. let decrypted = try aes.decrypt(encrypted)
  47. XCTAssertEqual(decrypted, input, "decryption failed")
  48. } catch {
  49. XCTFail("\(error)")
  50. }
  51. }
  52. func testAESEncryptCBCNoPadding() {
  53. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  54. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  55. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  56. let expected: Array<UInt8> = [0x76, 0x49, 0xab, 0xac, 0x81, 0x19, 0xb2, 0x46, 0xce, 0xe9, 0x8e, 0x9b, 0x12, 0xe9, 0x19, 0x7d]
  57. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .noPadding)
  58. let encrypted = try! aes.encrypt(plaintext)
  59. XCTAssertEqual(encrypted, expected, "encryption failed")
  60. let decrypted = try! aes.decrypt(encrypted)
  61. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  62. }
  63. func testAESEncryptCBCWithPadding() {
  64. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  65. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  66. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  67. let expected: Array<UInt8> = [0x76, 0x49, 0xab, 0xac, 0x81, 0x19, 0xb2, 0x46, 0xce, 0xe9, 0x8e, 0x9b, 0x12, 0xe9, 0x19, 0x7d, 0x89, 0x64, 0xe0, 0xb1, 0x49, 0xc1, 0x0b, 0x7b, 0x68, 0x2e, 0x6e, 0x39, 0xaa, 0xeb, 0x73, 0x1c]
  68. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7)
  69. let encrypted = try! aes.encrypt(plaintext)
  70. XCTAssertEqual(encrypted, expected, "encryption failed")
  71. let decrypted = try! aes.decrypt(encrypted)
  72. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  73. }
  74. func testAESEncryptCBCWithPaddingPartial() {
  75. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  76. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  77. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a, 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  78. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7)
  79. var ciphertext = Array<UInt8>()
  80. var encryptor = try! aes.makeEncryptor()
  81. ciphertext += try! encryptor.update(withBytes: plaintext[0..<8])
  82. ciphertext += try! encryptor.update(withBytes: plaintext[8..<16])
  83. ciphertext += try! encryptor.update(withBytes: plaintext[16..<32])
  84. ciphertext += try! encryptor.finish()
  85. XCTAssertEqual(try! aes.encrypt(plaintext), ciphertext, "encryption failed")
  86. }
  87. func testAESEncryptIncremental() {
  88. do {
  89. var ciphertext = Array<UInt8>()
  90. let plaintext = "Today Apple launched the open source Swift community, as well as amazing new tools and resources."
  91. let aes = try AES(key: "passwordpassword".bytes, blockMode: .CBC(iv: "drowssapdrowssap".bytes))
  92. var encryptor = try! aes.makeEncryptor()
  93. ciphertext += try encryptor.update(withBytes: plaintext.bytes)
  94. ciphertext += try encryptor.finish()
  95. XCTAssertEqual(try aes.encrypt(plaintext.bytes), ciphertext, "encryption failed")
  96. } catch {
  97. XCTAssert(false, "\(error)")
  98. }
  99. }
  100. func testAESDecryptCBCWithPaddingPartial() {
  101. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  102. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  103. let ciphertext: Array<UInt8> = [118, 73, 171, 172, 129, 25, 178, 70, 206, 233, 142, 155, 18, 233, 25, 125, 76, 187, 200, 88, 117, 107, 53, 129, 37, 82, 158, 150, 152, 163, 143, 68, 169, 105, 137, 234, 93, 98, 239, 215, 41, 45, 51, 254, 138, 92, 251, 17]
  104. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7)
  105. var plaintext = Array<UInt8>()
  106. var decryptor = try! aes.makeDecryptor()
  107. plaintext += try! decryptor.update(withBytes: ciphertext[0..<8])
  108. plaintext += try! decryptor.update(withBytes: ciphertext[8..<16])
  109. plaintext += try! decryptor.update(withBytes: ciphertext[16..<32])
  110. plaintext += try! decryptor.finish()
  111. XCTAssertEqual(try! aes.decrypt(ciphertext), plaintext, "encryption failed")
  112. }
  113. func testAESEncryptCFB() {
  114. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  115. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  116. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  117. let expected: Array<UInt8> = [0x3b, 0x3f, 0xd9, 0x2e, 0xb7, 0x2d, 0xad, 0x20, 0x33, 0x34, 0x49, 0xf8, 0xe8, 0x3c, 0xfb, 0x4a]
  118. let aes = try! AES(key: key, blockMode: .CFB(iv: iv), padding: .noPadding)
  119. let encrypted = try! aes.encrypt(plaintext)
  120. XCTAssertEqual(encrypted, expected, "encryption failed")
  121. let decrypted = try! aes.decrypt(encrypted)
  122. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  123. }
  124. // https://github.com/krzyzanowskim/CryptoSwift/issues/142
  125. func testAESEncryptCFBLong() {
  126. let key: Array<UInt8> = [56, 118, 37, 51, 125, 78, 103, 107, 119, 40, 74, 88, 117, 112, 123, 75, 122, 89, 72, 36, 46, 91, 106, 60, 54, 110, 34, 126, 69, 126, 61, 87]
  127. let iv: Array<UInt8> = [69, 122, 99, 87, 83, 112, 110, 65, 54, 109, 107, 89, 73, 122, 74, 49]
  128. let plaintext: Array<UInt8> = [123, 10, 32, 32, 34, 67, 111, 110, 102, 105, 114, 109, 34, 32, 58, 32, 34, 116, 101, 115, 116, 105, 110, 103, 34, 44, 10, 32, 32, 34, 70, 105, 114, 115, 116, 78, 97, 109, 101, 34, 32, 58, 32, 34, 84, 101, 115, 116, 34, 44, 10, 32, 32, 34, 69, 109, 97, 105, 108, 34, 32, 58, 32, 34, 116, 101, 115, 116, 64, 116, 101, 115, 116, 46, 99, 111, 109, 34, 44, 10, 32, 32, 34, 76, 97, 115, 116, 78, 97, 109, 101, 34, 32, 58, 32, 34, 84, 101, 115, 116, 101, 114, 34, 44, 10, 32, 32, 34, 80, 97, 115, 115, 119, 111, 114, 100, 34, 32, 58, 32, 34, 116, 101, 115, 116, 105, 110, 103, 34, 44, 10, 32, 32, 34, 85, 115, 101, 114, 110, 97, 109, 101, 34, 32, 58, 32, 34, 84, 101, 115, 116, 34, 10, 125]
  129. let encrypted: Array<UInt8> = try! AES(key: key, blockMode: .CFB(iv: iv)).encrypt(plaintext)
  130. let decrypted: Array<UInt8> = try! AES(key: key, blockMode: .CFB(iv: iv)).decrypt(encrypted)
  131. XCTAssert(decrypted == plaintext, "decryption failed")
  132. }
  133. func testAESEncryptOFB128() {
  134. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  135. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  136. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  137. let expected: Array<UInt8> = [0x3b, 0x3f, 0xd9, 0x2e, 0xb7, 0x2d, 0xad, 0x20, 0x33, 0x34, 0x49, 0xf8, 0xe8, 0x3c, 0xfb, 0x4a]
  138. let aes = try! AES(key: key, blockMode: .OFB(iv: iv), padding: .noPadding)
  139. let encrypted = try! aes.encrypt(plaintext)
  140. XCTAssertEqual(encrypted, expected, "encryption failed")
  141. let decrypted = try! aes.decrypt(encrypted)
  142. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  143. }
  144. func testAESEncryptOFB256() {
  145. let key: Array<UInt8> = [0x60, 0x3d, 0xeb, 0x10, 0x15, 0xca, 0x71, 0xbe, 0x2b, 0x73, 0xae, 0xf0, 0x85, 0x7d, 0x77, 0x81, 0x1f, 0x35, 0x2c, 0x07, 0x3b, 0x61, 0x08, 0xd7, 0x2d, 0x98, 0x10, 0xa3, 0x09, 0x14, 0xdf, 0xf4]
  146. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  147. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  148. let expected: Array<UInt8> = [0xdc, 0x7e, 0x84, 0xbf, 0xda, 0x79, 0x16, 0x4b, 0x7e, 0xcd, 0x84, 0x86, 0x98, 0x5d, 0x38, 0x60]
  149. let aes = try! AES(key: key, blockMode: .OFB(iv: iv), padding: .noPadding)
  150. let encrypted = try! aes.encrypt(plaintext)
  151. XCTAssertEqual(encrypted, expected, "encryption failed")
  152. let decrypted = try! aes.decrypt(encrypted)
  153. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  154. }
  155. func testAESEncryptPCBC256() {
  156. let key: Array<UInt8> = [0x60, 0x3d, 0xeb, 0x10, 0x15, 0xca, 0x71, 0xbe, 0x2b, 0x73, 0xae, 0xf0, 0x85, 0x7d, 0x77, 0x81, 0x1f, 0x35, 0x2c, 0x07, 0x3b, 0x61, 0x08, 0xd7, 0x2d, 0x98, 0x10, 0xa3, 0x09, 0x14, 0xdf, 0xf4]
  157. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  158. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  159. let expected: Array<UInt8> = [0xf5, 0x8c, 0x4c, 0x04, 0xd6, 0xe5, 0xf1, 0xba, 0x77, 0x9e, 0xab, 0xfb, 0x5f, 0x7b, 0xfb, 0xd6]
  160. let aes = try! AES(key: key, blockMode: .PCBC(iv: iv), padding: .noPadding)
  161. let encrypted = try! aes.encrypt(plaintext)
  162. print(encrypted.toHexString())
  163. XCTAssertEqual(encrypted, expected, "encryption failed")
  164. let decrypted = try! aes.decrypt(encrypted)
  165. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  166. }
  167. func testAESEncryptCTR() {
  168. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  169. let iv: Array<UInt8> = [0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff]
  170. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a]
  171. let expected: Array<UInt8> = [0x87, 0x4d, 0x61, 0x91, 0xb6, 0x20, 0xe3, 0x26, 0x1b, 0xef, 0x68, 0x64, 0x99, 0x0d, 0xb6, 0xce]
  172. let aes = try! AES(key: key, blockMode: .CTR(iv: iv), padding: .noPadding)
  173. let encrypted = try! aes.encrypt(plaintext)
  174. XCTAssertEqual(encrypted.count, plaintext.count)
  175. XCTAssertEqual(encrypted, expected, "encryption failed")
  176. let decrypted = try! aes.decrypt(encrypted)
  177. XCTAssertEqual(decrypted.count, plaintext.count)
  178. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  179. }
  180. // https://github.com/krzyzanowskim/CryptoSwift/issues/424
  181. func testAESEncryptCTRZeroPadding() {
  182. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  183. let iv: Array<UInt8> = [0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff]
  184. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a, 0xfd]
  185. let aes = try! AES(key: key, blockMode: .CTR(iv: iv), padding: .zeroPadding)
  186. let encrypted = try! aes.encrypt(plaintext)
  187. XCTAssertEqual(plaintext.count, 17)
  188. XCTAssertEqual(encrypted.count, 32, "padding failed")
  189. }
  190. func testAESEncryptCTRIrregularLength() {
  191. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  192. let iv: Array<UInt8> = [0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff]
  193. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a, 0x01]
  194. let expected: Array<UInt8> = [0x87, 0x4d, 0x61, 0x91, 0xb6, 0x20, 0xe3, 0x26, 0x1b, 0xef, 0x68, 0x64, 0x99, 0x0d, 0xb6, 0xce, 0x37]
  195. let aes = try! AES(key: key, blockMode: .CTR(iv: iv), padding: .noPadding)
  196. let encrypted = try! aes.encrypt(plaintext)
  197. XCTAssertEqual(encrypted, expected, "encryption failed")
  198. let decrypted = try! aes.decrypt(encrypted)
  199. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  200. }
  201. // https://github.com/krzyzanowskim/CryptoSwift/pull/290
  202. func testAESDecryptCTRSeek() {
  203. let key: Array<UInt8> = [0x52, 0x72, 0xb5, 0x9c, 0xab, 0x07, 0xc5, 0x01, 0x11, 0x7a, 0x39, 0xb6, 0x10, 0x35, 0x87, 0x02]
  204. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01]
  205. var plaintext: Array<UInt8> = Array<UInt8>(repeating: 0, count: 6000)
  206. for i in 0..<plaintext.count / 6 {
  207. let s = String(format: "%05d", i).bytes
  208. plaintext[i * 6 + 0] = s[0]
  209. plaintext[i * 6 + 1] = s[1]
  210. plaintext[i * 6 + 2] = s[2]
  211. plaintext[i * 6 + 3] = s[3]
  212. plaintext[i * 6 + 4] = s[4]
  213. plaintext[i * 6 + 5] = "|".utf8.first!
  214. }
  215. let aes = try! AES(key: key, blockMode: .CTR(iv: iv), padding: .noPadding)
  216. let encrypted = try! aes.encrypt(plaintext)
  217. var decryptor = try! aes.makeDecryptor()
  218. decryptor.seek(to: 2)
  219. var part1 = try! decryptor.update(withBytes: Array(encrypted[2..<5]))
  220. part1 += try! decryptor.finish()
  221. XCTAssertEqual(part1, Array(plaintext[2..<5]), "seek decryption failed")
  222. decryptor.seek(to: 1000)
  223. var part2 = try! decryptor.update(withBytes: Array(encrypted[1000..<1200]))
  224. part2 += try! decryptor.finish()
  225. XCTAssertEqual(part2, Array(plaintext[1000..<1200]), "seek decryption failed")
  226. decryptor.seek(to: 5500)
  227. var part3 = try! decryptor.update(withBytes: Array(encrypted[5500..<6000]))
  228. part3 += try! decryptor.finish()
  229. XCTAssertEqual(part3, Array(plaintext[5500..<6000]), "seek decryption failed")
  230. decryptor.seek(to: 0)
  231. var part4 = try! decryptor.update(withBytes: Array(encrypted[0..<80]))
  232. part4 += try! decryptor.finish()
  233. XCTAssertEqual(part4, Array(plaintext[0..<80]), "seek decryption failed")
  234. }
  235. // https://github.com/krzyzanowskim/CryptoSwift/pull/289
  236. func testAESEncryptCTRIrregularLengthIncrementalUpdate() {
  237. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  238. let iv: Array<UInt8> = [0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff]
  239. let plaintext: Array<UInt8> = [0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a, 0x01, 0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11, 0x73, 0x93, 0x17, 0x2a, 0x01]
  240. let expected: Array<UInt8> = [0x87, 0x4d, 0x61, 0x91, 0xb6, 0x20, 0xe3, 0x26, 0x1b, 0xef, 0x68, 0x64, 0x99, 0xd, 0xb6, 0xce, 0x37, 0x40, 0xbd, 0x82, 0x85, 0x5d, 0x11, 0xfc, 0x8e, 0x49, 0x4a, 0xa9, 0xed, 0x23, 0xe0, 0xb9, 0x40, 0x2d]
  241. let aes = try! AES(key: key, blockMode: .CTR(iv: iv), padding: .noPadding)
  242. var encryptor = try! aes.makeEncryptor()
  243. var encrypted = Array<UInt8>()
  244. encrypted += try! encryptor.update(withBytes: plaintext[0..<5])
  245. encrypted += try! encryptor.update(withBytes: plaintext[5..<15])
  246. encrypted += try! encryptor.update(withBytes: plaintext[15..<plaintext.count])
  247. encrypted += try! encryptor.finish()
  248. XCTAssertEqual(encrypted, expected, "encryption failed")
  249. var decryptor = try! aes.makeDecryptor()
  250. var decrypted = Array<UInt8>()
  251. decrypted += try! decryptor.update(withBytes: expected[0..<5])
  252. decrypted += try! decryptor.update(withBytes: expected[5..<15])
  253. decrypted += try! decryptor.update(withBytes: expected[15..<plaintext.count])
  254. decrypted += try! decryptor.finish()
  255. XCTAssertEqual(decrypted, plaintext, "decryption failed")
  256. }
  257. func testAESWithWrongKey() {
  258. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  259. let key2: Array<UInt8> = [0x22, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x33]
  260. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  261. let plaintext: Array<UInt8> = [49, 46, 50, 50, 50, 51, 51, 51, 51]
  262. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7)
  263. let aes2 = try! AES(key: key2, blockMode: .CBC(iv: iv), padding: .pkcs7)
  264. let encrypted = try! aes.encrypt(plaintext)
  265. let decrypted = try? aes2.decrypt(encrypted)
  266. XCTAssertTrue(decrypted! != plaintext, "failed")
  267. }
  268. // https://github.com/krzyzanowskim/CryptoSwift/issues/298
  269. func testIssue298() {
  270. let encryptedValue = "47595cfa90f7b0b0e0d9d7240a2e035f7f4acde27d7ca778a7d8b05add32a0a92d945c0a59f7f0e029d7f2fbb258b2f0"
  271. let expected: Array<UInt8> = [55, 52, 98, 54, 53, 51, 101, 51, 54, 52, 51, 48, 100, 55, 97, 57, 99, 100, 57, 49, 97, 50, 52, 100, 57, 57, 52, 52, 98, 48, 51, 50, 79, 114, 70, 101, 99, 107, 114, 87, 111, 0, 0, 0, 0, 0, 0, 0]
  272. let key = "0123456789abcdef"
  273. let iv = "fedcba9876543210"
  274. do {
  275. let aes = try AES(key: key, iv: iv, padding: .noPadding)
  276. let ciphertext = try aes.decrypt(Array<UInt8>(hex: encryptedValue))
  277. XCTAssertEqual(ciphertext, expected)
  278. } catch {
  279. XCTFail("failed")
  280. }
  281. }
  282. // https://github.com/krzyzanowskim/CryptoSwift/issues/394
  283. func testIssue394() {
  284. let plaintext = "Nullam quis risus eget urna mollis ornare vel eu leo.".bytes
  285. let key = "passwordpassword".bytes.md5() // -md md5
  286. let iv = "drowssapdrowssap".bytes // -iv 64726f777373617064726f7773736170
  287. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7) // -aes-128-cbc
  288. let ciphertext = try! aes.encrypt(plaintext) // enc
  289. // $ echo -n "Nullam quis risus eget urna mollis ornare vel eu leo." | openssl enc -aes-128-cbc -md md5 -nosalt -iv 64726f777373617064726f7773736170 -pass pass:passwordpassword -base64
  290. // cij+965z2Xqoj9tIHgtA72ZPfv5sxnt76vwkIt1CodYY313oa7mr0pSc5o++g0CX
  291. // YczxK2fGIa84xtwDtRMwBQ==
  292. XCTAssertEqual(ciphertext.toBase64(), "cij+965z2Xqoj9tIHgtA72ZPfv5sxnt76vwkIt1CodYY313oa7mr0pSc5o++g0CXYczxK2fGIa84xtwDtRMwBQ==")
  293. }
  294. // https://github.com/krzyzanowskim/CryptoSwift/issues/411
  295. func testIssue411() {
  296. let ciphertext: Array<UInt8> = [0x2a, 0x3a, 0x80, 0x05, 0xaf, 0x46, 0x58, 0x2d, 0x66, 0x52, 0x10, 0xae, 0x86, 0xd3, 0x8e, 0x8f] // test
  297. let key = "passwordpassword".bytes.md5() // -md md5
  298. let iv = "drowssapdrowssap".bytes // -iv 64726f777373617064726f7773736170
  299. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7) // -aes-128-cbc
  300. let plaintext = try! ciphertext.decrypt(cipher: aes)
  301. XCTAssertEqual("74657374", plaintext.toHexString())
  302. }
  303. }
  304. #if !CI
  305. extension AESTests {
  306. func testAESEncryptPerformance() {
  307. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  308. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  309. let message = Array<UInt8>(repeating: 7, count: 1024 * 1024)
  310. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7)
  311. measure {
  312. _ = try! aes.encrypt(message)
  313. }
  314. }
  315. func testAESDecryptPerformance() {
  316. let key: Array<UInt8> = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
  317. let iv: Array<UInt8> = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
  318. let message = Array<UInt8>(repeating: 7, count: 1024 * 1024)
  319. let aes = try! AES(key: key, blockMode: .CBC(iv: iv), padding: .pkcs7)
  320. measure {
  321. _ = try! aes.decrypt(message)
  322. }
  323. }
  324. }
  325. #endif
  326. extension AESTests {
  327. static func allTests() -> [(String, (AESTests) -> () -> Void)] {
  328. var tests = [
  329. ("testAESEncrypt", testAESEncrypt),
  330. ("testAESEncrypt2", testAESEncrypt2),
  331. ("testAESEncrypt3", testAESEncrypt3),
  332. ("testAESEncryptCBCNoPadding", testAESEncryptCBCNoPadding),
  333. ("testAESEncryptCBCWithPadding", testAESEncryptCBCWithPadding),
  334. ("testAESEncryptCBCWithPaddingPartial", testAESEncryptCBCWithPaddingPartial),
  335. ("testAESEncryptIncremental", testAESEncryptIncremental),
  336. ("testAESDecryptCBCWithPaddingPartial", testAESDecryptCBCWithPaddingPartial),
  337. ("testAESEncryptCFB", testAESEncryptCFB),
  338. ("testAESEncryptCFBLong", testAESEncryptCFBLong),
  339. ("testAESEncryptOFB128", testAESEncryptOFB128),
  340. ("testAESEncryptOFB256", testAESEncryptOFB256),
  341. ("testAESEncryptPCBC256", testAESEncryptPCBC256),
  342. ("testAESEncryptCTR", testAESEncryptCTR),
  343. ("testAESEncryptCTRZeroPadding", testAESEncryptCTRZeroPadding),
  344. ("testAESEncryptCTRIrregularLength", testAESEncryptCTRIrregularLength),
  345. ("testAESDecryptCTRSeek", testAESDecryptCTRSeek),
  346. ("testAESEncryptCTRIrregularLengthIncrementalUpdate", testAESEncryptCTRIrregularLengthIncrementalUpdate),
  347. ("testIssue298", testIssue298),
  348. ("testIssue394", testIssue394),
  349. ("testIssue411", testIssue411),
  350. ("testAESWithWrongKey", testAESWithWrongKey),
  351. ]
  352. #if !CI
  353. tests += [
  354. ("testAESEncryptPerformance", testAESEncryptPerformance),
  355. ("testAESDecryptPerformance", testAESDecryptPerformance),
  356. ]
  357. #endif
  358. return tests
  359. }
  360. }