CHANGELOG 9.1 KB

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