CHANGELOG 4.7 KB

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