CHANGELOG 3.5 KB

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