X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcipher.cpp;h=efbd88e5081f049b20828777c3ca08662e3b2932;hp=2d9bff42e6ba354c4840db95c349255433c2e827;hb=HEAD;hpb=c1cf157116de7fc3da96203aa6f03c38c7ebb650 diff --git a/src/core/cipher.cpp b/src/core/cipher.cpp index 2d9bff42..65fecbfd 100644 --- a/src/core/cipher.cpp +++ b/src/core/cipher.cpp @@ -14,8 +14,6 @@ #include "cipher.h" -#include "logmessage.h" - Cipher::Cipher() { m_primeNum = QCA::BigInteger( @@ -307,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');