CHANGELOG 2.3 KB

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