diff --git a/src/websockets.cpp b/src/websockets.cpp index 920b98c..afbbca6 100644 --- a/src/websockets.cpp +++ b/src/websockets.cpp @@ -432,9 +432,12 @@ void AppDataServer::saveNonceHex(NonceType nt, QString noncehex) { // Encrypt an outgoing message with the stored secret key. QString AppDataServer::encryptOutgoing(QString msg) { - if (msg.length() % 256 > 0) { - msg = msg + QString(" ").repeated(256 - (msg.length() % 256)); + int padding = 16*1024; + qDebug() << "Encrypt msg(pad="<