CHANGELOG 1.9 KB

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