CHANGELOG 3.2 KB

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