2
0

CHANGELOG 4.4 KB

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