cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / core / cipher.cpp
index 2d9bff4..65fecbf 100644 (file)
@@ -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');