CHANGELOG 3.9 KB

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