CHANGELOG 5.5 KB

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