mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Fix hash function comparator
This commit is contained in:
parent
528cf5395b
commit
c0b8b471ab
2 changed files with 5 additions and 2 deletions
|
@ -135,9 +135,12 @@ bool MessageDigest::isStronger(const std::string& lhs, const std::string& rhs)
|
||||||
FindHashTypeEntry(lhs));
|
FindHashTypeEntry(lhs));
|
||||||
auto rEntry = std::find_if(std::begin(hashTypes), std::end(hashTypes),
|
auto rEntry = std::find_if(std::begin(hashTypes), std::end(hashTypes),
|
||||||
FindHashTypeEntry(rhs));
|
FindHashTypeEntry(rhs));
|
||||||
if(lEntry == std::end(hashTypes) || rEntry == std::end(hashTypes)) {
|
if(lEntry == std::end(hashTypes)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if(rEntry == std::end(hashTypes)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return lEntry->strength > rEntry->strength;
|
return lEntry->strength > rEntry->strength;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,7 @@ void MessageDigestTest::testIsStronger()
|
||||||
CPPUNIT_ASSERT(MessageDigest::isStronger("sha-1", "md5"));
|
CPPUNIT_ASSERT(MessageDigest::isStronger("sha-1", "md5"));
|
||||||
CPPUNIT_ASSERT(!MessageDigest::isStronger("md5", "sha-1"));
|
CPPUNIT_ASSERT(!MessageDigest::isStronger("md5", "sha-1"));
|
||||||
CPPUNIT_ASSERT(!MessageDigest::isStronger("unknown", "sha-1"));
|
CPPUNIT_ASSERT(!MessageDigest::isStronger("unknown", "sha-1"));
|
||||||
CPPUNIT_ASSERT(!MessageDigest::isStronger("sha-1", "unknown"));
|
CPPUNIT_ASSERT(MessageDigest::isStronger("sha-1", "unknown"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MessageDigestTest::testIsValidHash()
|
void MessageDigestTest::testIsValidHash()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue