CHANGELOG 7.5 KB

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