CHANGELOG 6.2 KB

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