CHANGELOG 6.9 KB

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