Skip to content

Commit 7b6a996

Browse files
committed
修复了一点代码错误
1 parent 5f58d49 commit 7b6a996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

encrypt/EncryptData.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ QString DecryptString(const QString& base64EncodedPassword)
7373
#ifdef _WIN32
7474
QByteArray decrypted = DecryptWithWindowsDPAPI(decoded);
7575
#else
76-
QByteArray decrypted = SimpleDecrypt(password.toUtf8());
76+
QByteArray decrypted = SimpleDecrypt(decoded);
7777
#endif
7878
return QString::fromUtf8(decrypted);
7979
}

0 commit comments

Comments
 (0)