X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=7bc0108b082896b810493dfe6f69a39dfd81fa9d;hp=4757578230bc41dc30577dcdc601c0c597527372;hb=3972e140226f32760bb2606650f93132c188b2dc;hpb=9fc57dc2c000e80fb8bd746a090e2e8210e1278e diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index 47575782..7bc0108b 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -120,9 +120,10 @@ public slots: // Blowfish stuff #ifdef HAVE_QCA2 - Cipher *cipher(const QString &recipient) const; + Cipher *cipher(const QString &recipient); QByteArray cipherKey(const QString &recipient) const; void setCipherKey(const QString &recipient, const QByteArray &key); + bool cipherUsesCBC(const QString &target); #endif void setAutoWhoEnabled(bool enabled); @@ -237,9 +238,6 @@ private: QList _msgQueue; QString _requestedUserModes; // 2 strings separated by a '-' character. first part are requested modes to add, the second to remove - - // Blowfish key map - QHash _cipherKeys; };