This commit is contained in:
eugenyorbitsoftcom 2022-08-05 14:15:11 +06:00
parent 9a180b098f
commit 870cb26e01

View file

@ -185,7 +185,7 @@ bool SecureFormat::writeSecureFile(QIODevice& device, const QSettings::SettingsM
for (auto key : keys) {
QString value = map.value(key).toString();
QByteArray qEncryptArray = encryptText(value);
outStream << key << "<=>" << qEncryptArray;
outStream << key << "<=>" << qEncryptArray << "\n";
qDebug() << "SecureFormat::writeSecureFile: " << key << "<=>" << qEncryptArray;
}