CHANGELOG 7.7 KB

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