Fix big endianess support in InternalMessageDigest and PBKDF2

- Replace sha1/md5 implementation by ones from https://github.com/nmaier/crypto
- Add endianess functionality fro https://github.com/nmaier/crypto

Closes GH-239
This commit is contained in:
Nils Maier 2014-06-10 13:09:08 +02:00
parent 60032bf0ab
commit 8587669995
11 changed files with 1402 additions and 611 deletions

View file

@ -685,20 +685,14 @@ 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 // USE_INTERNAL_MD
CPPUNIT_ASSERT_EQUAL((size_t)3, result.size());
#endif // USE_INTERNAL_MD
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()));