CHANGELOG 7.8 KB

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