CHANGELOG 9.2 KB

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