QT 加密算法(QCryptographicHash)

#include 

 QString str = "hello";
    QCryptographicHash hash(QCryptographicHash::Md5);
    //    hash.addData(str.toLatin1()); //"]A@*\xBCK*v\xB9q\x9D\x91\x10\x17\xC5\x92"
    hash.addData(str.toLocal8Bit());
    qDebug() << str;
    qDebug() << hash.result();

你可能感兴趣的:(qt,哈希算法,开发语言)