CHANGELOG 8.3 KB

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