CHANGELOG 4.7 KB

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