有没有办法在Qt中获取磁盘上文件的MD5或SHA-1校验和/哈希值?
例如,我有文件路径,我可能需要验证该文件的内容是否与某个哈希值匹配。
答案 0 :(得分:45)
使用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();
}
答案 1 :(得分:0)
如果您使用的是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();
}
因为
布尔QCryptographicHash :: addData(QIODevice * device)
从打开的QIODevice设备读取数据,直到数据结束并对其进行哈希处理。如果读取成功,则返回true。
此功能在Qt 5.0中引入。
参考:https://www.qtcentre.org/threads/47635-Calculate-MD5-sum-of-a-big-file