CHANGELOG 2.1 KB

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