我在这里得到的东西:
问题:如何简单地加密和加密简单的 QString 值?我需要这个能够将一些加密的字符串保存到INI文件中,并在重新打开应用程序后加密字符串到正常的密码字符串值。
PS:我看起来简单而且很好。
感谢您的帮助!
答案 0 :(得分:16)
这里有SimpleCrypt:https://wiki.qt.io/Simple_encryption_with_SimpleCrypt,顾名思义,作者说该类不提供强加密,但在我看来它非常好。
您可以在此处下载一个有效的示例:http://www.qtcentre.org/threads/45346-Encrypting-an-existing-sqlite-database-in-sqlcipher?p=206406#post206406
#include <QtGui>
#include "simplecrypt.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QString FreeTrialStartDate ;
//Set The Encryption And Decryption Key
SimpleCrypt processSimpleCrypt(89473829);
QString FreeTrialStartsOn("22/11/2011");
//Encrypt
FreeTrialStartDate = processSimpleCrypt.encryptToString(FreeTrialStartsOn);
qDebug() << "Encrypted 22/11/2011 to" << FreeTrialStartDate;
//Decrypt
QString decrypt = processSimpleCrypt.decryptToString(FreeTrialStartDate);
qDebug() << "Decrypted 22/11/2011 to" << decrypt;
return a.exec();
}
答案 1 :(得分:11)
如果您只想将其用作密码,请使用QCryptographicHash
。哈希密码,将其保存到文件中。然后,当您想要比较时,哈希输入并将其与保存的密码进行比较。当然这不是很安全,你可以进入像salting这样的东西来提高安全性。
如果您只想加密和解密存储在文件中的字符串,请使用cipher。请查看Botan或Crypto++。
这当然取决于您想要的安全级别。
答案 2 :(得分:1)
将数据添加到加密哈希:
QByteArray string = "Nokia";
QCryptographicHash hasher(QCryptographicHash::Sha1);
hasher.addData(string);
返回最终的哈希值。
QByteArray string1=hasher.result();
和 Main.cpp 示例
#include <QtGui/QApplication>
#include <QWidget>
#include <QHBoxLayout>
#include <QCryptographicHash>
#include <QString>
#include <QByteArray>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWidget *win=new QWidget();
QHBoxLayout *lay=new QHBoxLayout();
QLabel *lbl=new QLabel();
QLabel *lbl1=new QLabel("Encrypted Text:");
lbl1->setBuddy(lbl);
QByteArray string="Nokia";
QCryptographicHash *hash=new QCryptographicHash(QCryptographicHash::Md4);
hash->addData(string);
QByteArray string1=hash->result();
lbl->setText(string1); // TODO: use e.g. toHex or toBase64
lay->addWidget(lbl1);
lay->addWidget(lbl);
win->setLayout(lay);
win->setStyleSheet("* { background-color:rgb(199,147,88); padding: 7px ; color:rgb(255,255,255)}");
win->showMaximized();
return a.exec();
}