CHANGELOG 3.6 KB

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