CHANGELOG 4.4 KB

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