CHANGELOG 1.1 KB

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