CHANGELOG 7.3 KB

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