CHANGELOG 1.6 KB

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