qt實現md5加密

晚餐吃什麼發表於2018-11-14
#include <QCoreApplication>
#include <QCryptographicHash>
#include <QDebug>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    QCryptographicHash hash(QCryptographicHash::Md5);
    QString str("test");
    hash.addData(str.toLatin1());
    qDebug()<<hash.result().toHex();

    return a.exec();
}

 

相關文章