CHANGELOG 2.4 KB

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