CHANGELOG 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. 0.6.0
  2. - Remove bridge() workaround for Linux (not needed)
  3. - make MD5() public
  4. - Update README
  5. - Convenience HMAC initializer for String input
  6. 0.6.0-beta2
  7. - SHA-2 fix #319
  8. - HashProtocol -> Digest and refactor
  9. - MD5 conforms to Updatable protocol and may be calculated incrementally
  10. - Cipher protocol accepts Collection input now
  11. 0.6.0-beta1
  12. - Swift 3 compatibility
  13. - Multiplatform, Single-scheme Xcode Project
  14. - Swift Package Manager fully supported (build and tests)
  15. - Improved Linux support
  16. - Travis configuration added
  17. - Public interface tests added
  18. - enum Authenticator -> protocol Authenticator
  19. - CRC -> Checksum
  20. - String.encrypt() returns hex string instead of Array<UInt8>
  21. - removed String.decrypt()
  22. - enum Hash -> struct Hash
  23. - Convenience initializer of Array of bytes with Hex string. Array<UInt8>(hex: "0xb1b1b2b2")
  24. - Fix reusability of ChaCha20 instance
  25. - Replace optional initializers with throwable initializers
  26. - Allow to set initial counter explicitly (AES block modes). RandomAccessCryptor.seek()
  27. 0.5.2
  28. - Fix AES-CTR incremental updates. #287
  29. - Fixed PBKDF2 tests. #295
  30. - Fixed assertion check in PKCS7. #288
  31. - Updatable protocol accept SequenceType in place of Array
  32. 0.5.1
  33. - Fixed PBKDF2 not taking key length parameter into account
  34. - Switch to Array<> in code
  35. 0.5
  36. - Added PBKDF1 https://tools.ietf.org/html/rfc2898#section-5.1
  37. - Added PBKDF2 https://tools.ietf.org/html/rfc2898#section-5.2
  38. - UpdatableCryptor protocol allows incremental encryption stream of data
  39. - CryptoSwift.playground
  40. - Docs update
  41. - Added reflection control to CRC-32 (Luís Silva)
  42. - Fix AES.init() (Pascal Pfiffner)
  43. 0.4.1
  44. - fix NoPadding()
  45. 0.4
  46. - Padding setup is now part of cipher constructor
  47. - Added PBKDF2 http://tools.ietf.org/html/rfc2898#section-5.2
  48. - Add BlockCipher protocol
  49. - Rename Cipher -> CipherProtocol
  50. - Remove build-frameworks.sh script
  51. - Keep sensitive data in memory with SecureBytes
  52. - Allows direct use of HMAC and Poly1305
  53. - README update
  54. - Fix missing Foundation import on Linux
  55. 0.3.1
  56. - replace deprecated Bit with new enum.
  57. 0.3
  58. - Swift 2.2 support
  59. - use generators for cipher block modes should reduce memory overload.
  60. - add OFB block mode
  61. - add PCBC block mode
  62. - String.decryptBase64ToString to decrypt Base64 encoded strings
  63. - broke up complicated expressions which were taking ages to compile
  64. 0.2.3
  65. - enable bitcode setting for Debug on an Apple TV
  66. - faster compilation times
  67. - improve padding functions
  68. 0.2.2
  69. - Fix ChaCha20 cipher
  70. - Replace for(;;) with for-in
  71. - Workaround for "NSString are not yet implicitly convertible to String" on Linux
  72. 0.2.1
  73. - Fix linux build
  74. - re-add umbrella header
  75. 0.2
  76. - Rabbit cipher (RFC4503)
  77. - Linux Swift support
  78. - Swift Package Manager support
  79. - tvOS support
  80. - Add optional seed to CRC
  81. - Add umbrella header (CryptoSwift.h)
  82. - Fix AES in CTR mode
  83. - Fix no padding support for CTR and CFB block modes
  84. - Fix access to AES.Error and ChaCha20.Error
  85. 0.1.1
  86. - Fix Cococapods package (missing Foundation integration)
  87. 0.1.0
  88. - Major performance improvements.
  89. - Transition from Optionals to throw error.
  90. - Replace enum Cipher with protocol for ciphers.
  91. - Added CRC16
  92. - Fixed AES CFB decryption
  93. - Drop internal "Foundation" dependency, nonetheless it is supported as usual.
  94. 0.0.16
  95. - Critical fix for private "md5" selector issue (#135)
  96. 0.0.15
  97. - Fix 32-bit CTR block mode
  98. - Carthage support update
  99. - Mark as App-Extension-Safe API
  100. 0.0.14
  101. - hexString -> toHextString() #105
  102. - CTR (Counter mode)
  103. - Hex string is lowercase now
  104. - Carthage support
  105. - Tests update
  106. - Swift 2.0 support - overall update