CHANGELOG 7.5 KB

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