qt如何对字符串进行md5加密,保存到文件,然后能读取到解密到文件?
发布网友
发布时间:2022-04-30 22:35
我来回答
共2个回答
热心网友
时间:2022-06-19 17:07
#include <QCryptographicHash>
#include <QSettings>
#include <QDebug>
// generate MD5-Hash
QString test_string("a test string for MD5 hash");
QByteArray md5_hash;
md5_hash = QCryptographicHash::hash(test_string.toUtf8(), QCryptographicHash::Md5);
QString md5hash_string = md5_hash.toHex();
qDebug() << "MD5-Hash:" << md5hash_string;
// write to md5_hash.ini
QSettings md5writeFile(QString("md5_hash.ini"), QSettings::IniFormat);
md5writeFile.setValue(QLatin1String("MD5-Hash"), md5_hash);
md5writeFile.sync();
// read from md5_hash.ini
QSettings md5readFile(QString("md5_hash.ini"), QSettings::IniFormat);
md5readFile.sync();
if (true == md5readFile.contains("MD5-Hash")){
QByteArray md5_array = md5readFile.value("MD5-Hash").toByteArray();
qDebug() << "MD5-Hash read from file:" << md5_array.toHex();
}
以上代码纯手敲并且Qt上验证通过的,请珍惜使用。
热心网友
时间:2022-06-19 17:07
在c语言中,创建单链表需要使用到malloc函数动态申请内存;文件的读写需要首先使用fopen函数打开文件,然后使用fscanf,fgetc,fgets,fprintf,fputc,fputs等函数读写函数,最后读写完毕要使用fclose函数关闭函数。下面的源程序展示了关于单链表如何从文件中读取数据和往文件里存入数据。