언어, 라이브러리/Qt
[Qt, C++] 파일 체크섬(Checksum) 출력(QCryptographicHash)
테스트 환경 Windows10 / C++ / Qt 5.15.2 / Qt Creator 4.13.3 파일 체크섬 출력 #include #include #include QFile file("D:/ReleaseNotes.txt"); // 파일 경로 if (file.open(QIODevice::ReadOnly)) { QByteArray fileData = file.readAll(); QByteArray hashData = QCryptographicHash::hash(fileData, QCryptographicHash::Md5); qDebug()
2021. 1. 3. 20:28
최근댓글