X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcipher.h;h=01cf9ddc60656d51e1926f880f94c3cbfebd6a3f;hb=145a52eb79fed146731f85c23b60f0609e40e785;hp=e7f88b38dcb6b4609c9a7a8c7ba75a6bed522356;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/core/cipher.h b/src/core/cipher.h index e7f88b38..01cf9ddc 100644 --- a/src/core/cipher.h +++ b/src/core/cipher.h @@ -22,21 +22,21 @@ class Cipher public: Cipher(); explicit Cipher(QByteArray key, QString cipherType = QString("blowfish")); - ~Cipher(); QByteArray decrypt(QByteArray cipher); QByteArray decryptTopic(QByteArray cipher); - bool encrypt(QByteArray &cipher); + bool encrypt(QByteArray& cipher); QByteArray initKeyExchange(); QByteArray parseInitKeyX(QByteArray key); bool parseFinishKeyX(QByteArray key); bool setKey(QByteArray key); QByteArray key() { return m_key; } - bool setType(const QString &type); + bool setType(const QString& type); QString type() { return m_type; } static bool neededFeaturesAvailable(); + inline bool usesCBC() { return m_cbc; } private: - //direction is true for encrypt, false for decrypt + // direction is true for encrypt, false for decrypt QByteArray blowfishCBC(QByteArray cipherText, bool direction); QByteArray blowfishECB(QByteArray cipherText, bool direction); QByteArray b64ToByte(QByteArray text); @@ -50,5 +50,4 @@ private: bool m_cbc; }; - -#endif // CIPHER_H +#endif // CIPHER_H