CHANGELOG 1.8 KB

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