CHANGELOG 9.2 KB

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