X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcipher.cpp;h=7cc75d0a5774cab7e972e0ceaa970ecd0edfe77b;hp=9ea9c1302dd935dc61c95e80c902f4871c327c35;hb=d921c7e14b3bd35d2b9f022ae88b90d83b97d568;hpb=c4917f44ac75393d56bc859f6da7d474cd5ec02b diff --git a/src/core/cipher.cpp b/src/core/cipher.cpp index 9ea9c130..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)