CHANGELOG 3.1 KB

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