CHANGELOG 1.5 KB

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