15 Mart 2018 Perşembe

QCryptographicHash Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <QCryptographicHash> 
hash metodu
Şöyle yaparız.
QFile file("/home/opc0de/somefile.dat");

if (file.open(QIODevice::ReadOnly)) {
  QByteArray fileData = file.readAll();
  QByteArray hashData = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);

  qDebug() << hashData.toHex();
}

Hiç yorum yok:

Yorum Gönder