CHANGELOG 6.5 KB

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