CHANGELOG 4.0 KB

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