CHANGELOG 5.8 KB

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