CHANGELOG 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. 0.3
  2. - Swift 2.2 support
  3. - use generators for cipher block modes should reduce memory overload.
  4. - add OFB block mode
  5. - add PCBC block mode
  6. - String.decryptBase64ToString to decrypt Base64 encoded strings
  7. 0.2.2
  8. - Fix ChaCha20 cipher
  9. - Replace for(;;) with for-in
  10. - Workaround for "NSString are not yet implicitly convertible to String" on Linux
  11. 0.2.1
  12. - Fix linux build
  13. - re-add umbrella header
  14. 0.2
  15. - Rabbit cipher (RFC4503)
  16. - Linux Swift support
  17. - Swift Package Manager support
  18. - tvOS support
  19. - Add optional seed to CRC
  20. - Add umbrella header (CryptoSwift.h)
  21. - Fix AES in CTR mode
  22. - Fix no padding support for CTR and CFB block modes
  23. - Fix access to AES.Error and ChaCha20.Error
  24. 0.1.1
  25. - Fix Cococapods package (missing Foundation integration)
  26. 0.1.0
  27. - Major performance improvements.
  28. - Transition from Optionals to throw error.
  29. - Replace enum Cipher with protocol for ciphers.
  30. - Added CRC16
  31. - Fixed AES CFB decryption
  32. - Drop internal "Foundation" dependency, nonetheless it is supported as usual.
  33. 0.0.16
  34. - Critical fix for private "md5" selector issue (#135)
  35. 0.0.15
  36. - Fix 32-bit CTR block mode
  37. - Carthage support update
  38. - Mark as App-Extension-Safe API
  39. 0.0.14
  40. - hexString -> toHextString() #105
  41. - CTR (Counter mode)
  42. - Hex string is lowercase now
  43. - Carthage support
  44. - Tests update
  45. - Swift 2.0 support - overall update