CHANGELOG 5.9 KB

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