Qtでディスク上のファイルのMD5またはSHA-1チェックサム/ハッシュを取得する方法はありますか?
たとえば、ファイルパスがあり、そのファイルの内容が特定のハッシュ値と一致することを確認する必要がある場合があります。
QFile
でファイルを開き、readAll()
を呼び出してその内容をQByteArray
にプルします。次に、それをQCryptographicHash::hash(const QByteArray& data, Algorithm method)
呼び出しに使用します。
Qt5ではaddData()
を使用できます:
// Returns empty QByteArray() on failure.
QByteArray fileChecksum(const QString &fileName,
QCryptographicHash::Algorithm hashAlgorithm)
{
QFile f(fileName);
if (f.open(QFile::ReadOnly)) {
QCryptographicHash hash(hashAlgorithm);
if (hash.addData(&f)) {
return hash.result();
}
}
return QByteArray();
}
Qt4を使用している場合は、これを試すことができます。
QByteArray fileChecksum(const QString &fileName, QCryptographicHash::Algorithm hashAlgorithm)
{
QFile sourceFile(fileName);
qint64 fileSize = sourceFile.size();
const qint64 bufferSize = 10240;
if (sourceFile.open(QIODevice::ReadOnly))
{
char buffer[bufferSize];
int bytesRead;
int readSize = qMin(fileSize, bufferSize);
QCryptographicHash hash(hashAlgorithm);
while (readSize > 0 && (bytesRead = sourceFile.read(buffer, readSize)) > 0)
{
fileSize -= bytesRead;
hash.addData(buffer, bytesRead);
readSize = qMin(fileSize, bufferSize);
}
sourceFile.close();
return QString(hash.result().toHex());
}
return QString();
}
なぜなら
bool QCryptographicHash :: addData(QIODevice * device)
開いているQIODeviceデバイスからデータを読み取り、終了してハッシュします。読み取りが成功した場合はtrueを返します。
この関数はQt 5.0で導入されました。
参照: https://www.qtcentre.org/threads/47635-Calculate-MD5-sum-of-a-big-file