CHANGELOG 2.2 KB

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