CHANGELOG 8.0 KB

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