CHANGELOG 3.9 KB

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