Готови решения > C/C++/Qt/etc
Qt 4.7.4 C++ Md4, Md5 и Sha1 Криптиране
(1/1)
haccac:
--- Код: C++ (QT) ---#include <QtCore/QCoreApplication>#include <QCryptographicHash>#include <QByteArray>#include <QString>#include <QDebug> int main(int argc, char *argv[]){ QCoreApplication a(argc, argv); QString str = "gluposti"; qDebug() << str; QByteArray data_to_hash = str.toAscii(); QCryptographicHash hash(QCryptographicHash::Md4); /* Ако искате да промените hashизползвайте QCryptographicHash::Md5 или QCryptographicHash::Sha1*/ hash.addData(data_to_hash); qDebug() << hash.result().toHex(); return a.exec();}
Навигация
[0] Списък на темите
Премини на пълна версия