CHANGELOG 2.5 KB

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