CHANGELOG 3.3 KB

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