CHANGELOG 6.6 KB

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