CHANGELOG 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. 1.6.0
  2. - Improve & extend RSA support with DER (see README for details)
  3. - Fix Blowfish memory leaks
  4. - Fix PCBC mode
  5. - SwiftWasm compatibility
  6. 1.5.1
  7. - Resolve type name clash by renaming BigInt -> BigInteger
  8. 1.5.0
  9. - RSA (@NathanFallet)
  10. - Workaround for Xcode 13.3.1
  11. 1.4.3
  12. - Fix PCBC mode.
  13. 1.4.2
  14. - Update Xcode project to Xcode 13
  15. - Add SHA3 support for HMAC
  16. - Update HMAC.Variant API (deprecate current cases)
  17. 1.4.1
  18. - Introduce ISO 10126 padding
  19. - fix various compiler warnings
  20. - Revert Xcode project deployment target
  21. 1.4.0
  22. - Customize CFB segment size (cfb8, cfb128).
  23. - Adapt Swift @inlineable for better code optimization
  24. 1.3.8
  25. - Revert xcframework revolution. Back to build from sources. (I'm sorry)
  26. 1.3.7
  27. - Re-release to workaround Swift Package Manager release
  28. 1.3.6
  29. - Fix macOS binary
  30. - Windows support
  31. 1.3.5
  32. - Re-release binary framework due to codesign issue
  33. 1.3.4
  34. - Distribute optimized binary (xcframework) via SPM for apple platforms
  35. 1.3.3
  36. - Adds OCB Authenticated-Encryption Algorithm (RFC7253)
  37. - build-framework.sh output CryptoSwift.xcframework
  38. - Xcode 12.2 maintenance updates
  39. - Removed CryptoSwift.playground (couldn't make it work since Xcode 12 update)
  40. 1.3.2
  41. - Swift 5.3 update (Xcode 12)
  42. - Bump target platform (iOS 9, macOS 10.12)
  43. - Allow CMAC with any Cipher
  44. - Remove CMAC key limit
  45. 1.3.1
  46. - Fix tests
  47. - Swift 5.2 update
  48. - Address possible timing issue
  49. 1.3.0
  50. - Adds ISO-78164 padding
  51. - Performance improvements
  52. - Swift 5.1 update
  53. 1.2.0
  54. - Performance improvements
  55. - Workaround Xcode test builds with Xcode 11
  56. 1.1.3
  57. - Fix build crash: https://bugs.swift.org/browse/SR-11630
  58. - Fixes Xcode project tests build
  59. - SwiftFormat all the things
  60. - Increase/fix SHA2 data length for big input by use Int64 for calculation
  61. 1.1.2
  62. - Fix Swift 5.0 build (for real this time)
  63. 1.1.1
  64. - Fix Swift 5.0 build
  65. 1.1.0
  66. - Replace RandomBytesSequence with Swift.RandomNumberGenerator
  67. - Fix CBC-MAC
  68. - Update SPM support
  69. - Update for Xcode 11 and Swift 5.1
  70. - Xcode: BUILD_LIBRARY_FOR_DISTRIBUTION = YES
  71. 1.0.0
  72. - Swift 5
  73. - Let's
  74. - Celebrate
  75. - This
  76. - Event
  77. - With
  78. - 1.0.0 release
  79. - After
  80. - 4 years
  81. - Thank you
  82. 0.15.0
  83. - Adds The scrypt Password-Based Key Derivation Function (https://tools.ietf.org/html/rfc7914)
  84. - Minor improvements
  85. 0.14.0
  86. - Fixed decryption of AES-GCM ciphertexts with custom tag length
  87. 0.13.1
  88. - Adds AES-GCM tag length configuration.
  89. - Fixes count check for initializing UInt64 from Data.
  90. 0.13.0
  91. - Adds CBC-MAC authenticator.
  92. - Adds AES-CCM operation mode.
  93. 0.12.0
  94. - Swift 4.2 maintenance update.
  95. 0.11.0
  96. - API: Cryptor.seek() is throwable
  97. - Adds proper stream support for CTR encryption with Updaptable interface.
  98. - Refactor internals for the stream cipher modes.
  99. - Set minimum deployment target to 8.0 (again).
  100. 0.10.0
  101. - API: BlockMode is no longer an enum. Please migrate to eg. CBC() etc...
  102. - Adds AES-GCM support. #97 - Feature sponsored by GesundheitsCloud (http://www.gesundheitscloud.de/)
  103. - Adds CRC32c support.
  104. - Improves AES variant validation.
  105. - Fixes empty password in PBKDF2.
  106. 0.9.0
  107. - Swift 4.1 compatibility
  108. - Added CMAC message authenticator https://tools.ietf.org/html/rfc4493
  109. - Added AEADChaCha20Poly1305 (AEAD_CHACHA20_POLY1305) https://tools.ietf.org/html/rfc7539#section-2.8.1
  110. 0.8.3
  111. - Fixes SHA3 padding.
  112. - Fixes Carthage builds.
  113. 0.8.2
  114. - Fixes SHA3 partial updates calculations.
  115. - Makes ChaCha20 processing faster again.
  116. 0.8.1
  117. - Adds Data(hex:) helper.
  118. - Adds HKDF (HMAC-based Extract-and-Expand Key Derivation Function)
  119. - Prevent ChaCha overflow error
  120. 0.8.0
  121. - Adds SHA3 Keccak variants
  122. - Adds String.bytes helper to convert String to array of bytes
  123. - Improves AES performance
  124. - Speeds up compilation times with Swift 4
  125. - Fixes: Blowfish minimum key size is 5
  126. - Removes Ciphers "iv" parameter (value moved to BlockMode)
  127. - BlockMode uses associated value for IV value where apply e.g. .CBC(iv: ivbytes)
  128. - Refactors internal hacks no longer needed with Swift 4
  129. 0.7.2
  130. - Adds Padding enum (.pkcs5, .pkcs7, .noPadding, .zeroPadding)
  131. - Removes Generics from the public API.
  132. - Slightly improves SHA1, SHA2, SHA3 performance.
  133. - Update SPM configuration for Swift 4
  134. 0.7.1
  135. - Swift 4.0 compatibility release
  136. 0.7.0
  137. - Swift 3.2 compatibility release
  138. 0.6.9
  139. - Fixed padding issue where padding was not properly added in CTR mode.
  140. - Fixed thrown error on decrypting empty string,
  141. - Fixed CI build script.
  142. - Added String.encryptToBase64()
  143. 0.6.8
  144. - Speed up MD5()
  145. - Faster Array(hex:)
  146. - Improve AES performance
  147. - Fix tvOS bitcode
  148. - Fix Blowfish CFB, OFB, CTR block modes.
  149. - Fix Blowfish for 32-bit arch.
  150. - Fix ChaCha20 preconditions
  151. 0.6.7
  152. - Release for Xcode 8.2
  153. - Fix playground example
  154. 0.6.6
  155. - Rework ChaCha20
  156. - Fix Poly1305
  157. 0.6.5
  158. - Significant performance improvement when processing lange amount of data.
  159. - Degeneric functions and change Sequence -> Collection in generic constraints.
  160. 0.6.4
  161. - More performance improvements
  162. - Add convenient Digest.sha2(bytes:variant)
  163. - New: Blowfish cipher
  164. 0.6.3
  165. - Hotfix release
  166. - Fixes bitPadding() that breaks Digests calculations, introduced in 0.6.2
  167. 0.6.2
  168. - SHA performance improvements by using less Swift in Swift
  169. - Fix public access to all digests classes
  170. 0.6.1
  171. - Update tests.
  172. - New: RandomBytesSequence urandom values on Linux.
  173. - Throw appropriate error for AES with invalid input where padding is needed.
  174. - Improve performance, especially to SHA-1, SHA-2, PBKDF and related.
  175. - Set deployment targets for all platform. Fixes Carthage builds.
  176. - New: SHA-3 implementation (request #291)
  177. - SHA-1 conforms to Updatable protocol and may be calculated incrementally.
  178. - SHA-2 conforms to Updatable protocol and may be calculated incrementally.
  179. 0.6.0
  180. - Remove bridge() workaround for Linux (not needed)
  181. - make MD5() public
  182. - Update README
  183. - Convenience HMAC initializer for String input
  184. 0.6.0-beta2
  185. - SHA-2 fix #319
  186. - HashProtocol -> Digest and refactor
  187. - MD5 conforms to Updatable protocol and may be calculated incrementally
  188. - Cipher protocol accepts Collection input now
  189. 0.6.0-beta1
  190. - Swift 3 compatibility
  191. - Multiplatform, Single-scheme Xcode Project
  192. - Swift Package Manager fully supported (build and tests)
  193. - Improved Linux support
  194. - Travis configuration added
  195. - Public interface tests added
  196. - enum Authenticator -> protocol Authenticator
  197. - CRC -> Checksum
  198. - String.encrypt() returns hex string instead of Array<UInt8>
  199. - removed String.decrypt()
  200. - enum Hash -> struct Hash
  201. - Convenience initializer of Array of bytes with Hex string. Array<UInt8>(hex: "0xb1b1b2b2")
  202. - Fix reusability of ChaCha20 instance
  203. - Replace optional initializers with throwable initializers
  204. - Allow to set initial counter explicitly (AES block modes). RandomAccessCryptor.seek()
  205. 0.5.2
  206. - Fix AES-CTR incremental updates. #287
  207. - Fixed PBKDF2 tests. #295
  208. - Fixed assertion check in PKCS7. #288
  209. - Updatable protocol accept SequenceType in place of Array
  210. 0.5.1
  211. - Fixed PBKDF2 not taking key length parameter into account
  212. - Switch to Array<> in code
  213. 0.5
  214. - Added PBKDF1 https://tools.ietf.org/html/rfc2898#section-5.1
  215. - Added PBKDF2 https://tools.ietf.org/html/rfc2898#section-5.2
  216. - UpdatableCryptor protocol allows incremental encryption stream of data
  217. - CryptoSwift.playground
  218. - Docs update
  219. - Added reflection control to CRC-32 (Luís Silva)
  220. - Fix AES.init() (Pascal Pfiffner)
  221. 0.4.1
  222. - fix NoPadding()
  223. 0.4
  224. - Padding setup is now part of cipher constructor
  225. - Added PBKDF2 http://tools.ietf.org/html/rfc2898#section-5.2
  226. - Add BlockCipher protocol
  227. - Rename Cipher -> CipherProtocol
  228. - Remove build-frameworks.sh script
  229. - Keep sensitive data in memory with SecureBytes
  230. - Allows direct use of HMAC and Poly1305
  231. - README update
  232. - Fix missing Foundation import on Linux
  233. 0.3.1
  234. - replace deprecated Bit with new enum.
  235. 0.3
  236. - Swift 2.2 support
  237. - use generators for cipher block modes should reduce memory overload.
  238. - add OFB block mode
  239. - add PCBC block mode
  240. - String.decryptBase64ToString to decrypt Base64 encoded strings
  241. - broke up complicated expressions which were taking ages to compile
  242. 0.2.3
  243. - enable bitcode setting for Debug on an Apple TV
  244. - faster compilation times
  245. - improve padding functions
  246. 0.2.2
  247. - Fix ChaCha20 cipher
  248. - Replace for(;;) with for-in
  249. - Workaround for "NSString are not yet implicitly convertible to String" on Linux
  250. 0.2.1
  251. - Fix linux build
  252. - re-add umbrella header
  253. 0.2
  254. - Rabbit cipher (RFC4503)
  255. - Linux Swift support
  256. - Swift Package Manager support
  257. - tvOS support
  258. - Add optional seed to CRC
  259. - Add umbrella header (CryptoSwift.h)
  260. - Fix AES in CTR mode
  261. - Fix no padding support for CTR and CFB block modes
  262. - Fix access to AES.Error and ChaCha20.Error
  263. 0.1.1
  264. - Fix Cococapods package (missing Foundation integration)
  265. 0.1.0
  266. - Major performance improvements.
  267. - Transition from Optionals to throw error.
  268. - Replace enum Cipher with protocol for ciphers.
  269. - Added CRC16
  270. - Fixed AES CFB decryption
  271. - Drop internal "Foundation" dependency, nonetheless it is supported as usual.
  272. 0.0.16
  273. - Critical fix for private "md5" selector issue (#135)
  274. 0.0.15
  275. - Fix 32-bit CTR block mode
  276. - Carthage support update
  277. - Mark as App-Extension-Safe API
  278. 0.0.14
  279. - hexString -> toHextString() #105
  280. - CTR (Counter mode)
  281. - Hex string is lowercase now
  282. - Carthage support
  283. - Tests update
  284. - Swift 2.0 support - overall update