CHANGELOG 1.9 KB

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