CHANGELOG 1.6 KB

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