X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcipher.cpp;h=7cc75d0a5774cab7e972e0ceaa970ecd0edfe77b;hp=15a986b25e2bd7f502a8f303af58a86d1330ab36;hb=d921c7e14b3bd35d2b9f022ae88b90d83b97d568;hpb=4c80eeb2d07b5ca75fd399b51c939961fdff1670 diff --git a/src/core/cipher.cpp b/src/core/cipher.cpp index 15a986b2..7cc75d0a 100644 --- a/src/core/cipher.cpp +++ b/src/core/cipher.cpp @@ -170,6 +170,13 @@ QByteArray Cipher::initKeyExchange() QByteArray Cipher::parseInitKeyX(QByteArray key) { QCA::Initializer init; + bool isCBC = false; + + if (key.endsWith(" CBC")) + { + isCBC = true; + key.chop(4); + } if (key.length() != 181) return QByteArray(); @@ -198,6 +205,9 @@ QByteArray Cipher::parseInitKeyX(QByteArray key) //remove trailing = because mircryption and fish think it's a swell idea. while (sharedKey.endsWith('=')) sharedKey.chop(1); + if (isCBC) + sharedKey.prepend("cbc:"); + bool success = setKey(sharedKey); if (!success) @@ -473,6 +483,5 @@ bool Cipher::neededFeaturesAvailable() if (QCA::isSupported("blowfish-ecb") && QCA::isSupported("blowfish-cbc") && QCA::isSupported("dh")) return true; - qWarning() << "QCA provider plugin not found. It is usually provided by the qca-ossl plugin."; return false; }