CHANGELOG 3.9 KB

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