CHANGELOG 6.2 KB

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