X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcipher.cpp;h=65fecbfd46a99db70ddd69677521090f22b0d71f;hp=efbd88e5081f049b20828777c3ca08662e3b2932;hb=c8ddabf364eff2400c61cea395aefe69eb8ba1b3;hpb=0fdc92b633d25609933314dc4fd942a7ab5dd94a diff --git a/src/core/cipher.cpp b/src/core/cipher.cpp index efbd88e5..65fecbfd 100644 --- a/src/core/cipher.cpp +++ b/src/core/cipher.cpp @@ -305,7 +305,7 @@ QByteArray Cipher::blowfishCBC(QByteArray cipherText, bool direction) } else { temp = QByteArray::fromBase64(temp); - // supposedly nescessary if we get a truncated message also allows for decryption of 'crazy' + // supposedly necessary if we get a truncated message also allows for decryption of 'crazy' // en/decoding clients that use STANDARDIZED PADDING TECHNIQUES while ((temp.length() % 8) != 0) temp.append('\0');