1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 23:37:59 +00:00

Use faster hash function

qHash(QString) will need to hash/loop through all the data while the new
code will only need one memcpy() and a few bit manipulations.
This commit is contained in:
Chocobo1 2020-01-27 03:49:49 +08:00
parent c3ce1aaa3d
commit 2b4490d8a7
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -89,5 +89,9 @@ bool BitTorrent::operator!=(const InfoHash &left, const InfoHash &right)
uint BitTorrent::qHash(const InfoHash &key, const uint seed)
{
#if (LIBTORRENT_VERSION_NUM < 10200)
return ::qHash(static_cast<QString>(key), seed);
#else
return ::qHash((std::hash<lt::sha1_hash> {})(key), seed);
#endif
}