CHANGELOG 5.5 KB

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