CHANGELOG 1.5 KB

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