CHANGELOG 8.1 KB

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