CHANGELOG 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. 0.5
  2. - Added PBKDF2 https://tools.ietf.org/html/rfc2898#section-5.1
  3. 0.4.1
  4. - fix NoPadding()
  5. 0.4
  6. - Padding setup is now part of cipher constructor
  7. - Added PBKDF2 http://tools.ietf.org/html/rfc2898#section-5.2
  8. - Add BlockCipher protocol
  9. - Rename Cipher -> CipherProtocol
  10. - Remove build-frameworks.sh script
  11. - Keep sensitive data in memory with SecureBytes
  12. - Allows direct use of HMAC and Poly1305
  13. - README update
  14. - Fix missing Foundation import on Linux
  15. 0.3.1
  16. - replace deprecated Bit with new enum.
  17. 0.3
  18. - Swift 2.2 support
  19. - use generators for cipher block modes should reduce memory overload.
  20. - add OFB block mode
  21. - add PCBC block mode
  22. - String.decryptBase64ToString to decrypt Base64 encoded strings
  23. - broke up complicated expressions which were taking ages to compile
  24. 0.2.3
  25. - enable bitcode setting for Debug on an Apple TV
  26. - faster compilation times
  27. - improve padding functions
  28. 0.2.2
  29. - Fix ChaCha20 cipher
  30. - Replace for(;;) with for-in
  31. - Workaround for "NSString are not yet implicitly convertible to String" on Linux
  32. 0.2.1
  33. - Fix linux build
  34. - re-add umbrella header
  35. 0.2
  36. - Rabbit cipher (RFC4503)
  37. - Linux Swift support
  38. - Swift Package Manager support
  39. - tvOS support
  40. - Add optional seed to CRC
  41. - Add umbrella header (CryptoSwift.h)
  42. - Fix AES in CTR mode
  43. - Fix no padding support for CTR and CFB block modes
  44. - Fix access to AES.Error and ChaCha20.Error
  45. 0.1.1
  46. - Fix Cococapods package (missing Foundation integration)
  47. 0.1.0
  48. - Major performance improvements.
  49. - Transition from Optionals to throw error.
  50. - Replace enum Cipher with protocol for ciphers.
  51. - Added CRC16
  52. - Fixed AES CFB decryption
  53. - Drop internal "Foundation" dependency, nonetheless it is supported as usual.
  54. 0.0.16
  55. - Critical fix for private "md5" selector issue (#135)
  56. 0.0.15
  57. - Fix 32-bit CTR block mode
  58. - Carthage support update
  59. - Mark as App-Extension-Safe API
  60. 0.0.14
  61. - hexString -> toHextString() #105
  62. - CTR (Counter mode)
  63. - Hex string is lowercase now
  64. - Carthage support
  65. - Tests update
  66. - Swift 2.0 support - overall update