2010-11-11 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Added sha-224, sha-384, sha-512 hash function support.
	* m4/openssl.m4
	* src/MessageDigest.cc
	* src/LibgcryptMessageDigestImpl.cc
	* src/LibsslMessageDigestImpl.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2010-11-11 03:23:08 +00:00
parent 89f997ec0d
commit 1946b3341f
7 changed files with 78 additions and 1 deletions

View file

@ -51,7 +51,10 @@ struct HashTypeEntry {
namespace {
HashTypeEntry hashTypes[] = {
HashTypeEntry("sha-1", 1),
HashTypeEntry("sha-256", 2),
HashTypeEntry("sha-224", 2),
HashTypeEntry("sha-256", 3),
HashTypeEntry("sha-384", 4),
HashTypeEntry("sha-512", 5),
HashTypeEntry("md5", 0)
};
} // namespace aria2
@ -137,6 +140,9 @@ bool MessageDigest::isValidHash
std::string MessageDigest::getCanonicalHashType(const std::string& hashType)
{
// This is really backward compatibility for Metalink3. aria2 only
// supported sha-1, sha-256 and md5 at Metalink3 era. So we don't
// add alias for sha-224, sha-384 and sha-512.
if("sha1" == hashType) {
return "sha-1";
} else if("sha256" == hashType) {