Add internal md5 and sha1 message digests

This commit is contained in:
Nils Maier 2013-09-20 22:39:33 +02:00
parent a1deb0e9f1
commit 38bdea4e06
9 changed files with 679 additions and 1 deletions

View file

@ -654,14 +654,20 @@ void HttpResponseTest::testGetDigest()
"MD5=LJDK2+9ClF8Nz/K5WZd/+A==");
std::vector<Checksum> result;
httpResponse.getDigest(result);
#ifdef USE_INTERNAL_MD
CPPUNIT_ASSERT_EQUAL((size_t)2, result.size());
#else
CPPUNIT_ASSERT_EQUAL((size_t)3, result.size());
#endif
Checksum c = result[0];
#ifndef USE_INTERNAL_MD
CPPUNIT_ASSERT_EQUAL(std::string("sha-256"), c.getHashType());
CPPUNIT_ASSERT_EQUAL(std::string("f83f271ae773dc6fe4a6454a41e0eb237c43e7bbf451e426cc60993a4d379ec5"),
util::toHex(c.getDigest()));
c = result[1];
#endif
CPPUNIT_ASSERT_EQUAL(std::string("sha-1"), c.getHashType());
CPPUNIT_ASSERT_EQUAL(std::string("f36003f22b462ffa184390533c500d8989e9f681"),
util::toHex(c.getDigest()));