I’m trying to calculate the hash of some disk image files (.iso)
so i have to read the entire file and store it in QByteArray to pass it later to QCryptographicHash::Hash
the problem is with reading performance, it takes a lot of time and the system freeze while using QFile::readAll() and storing it in byte array.
is there any solution to reduce the time and prevent the system form freezing?