CHANGELOG 6.0 KB

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