CHANGELOG 5.8 KB

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