2
0

CHANGELOG 7.9 KB

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