diff --git a/llvm/include/llvm/Support/MD5.h b/llvm/include/llvm/Support/MD5.h --- a/llvm/include/llvm/Support/MD5.h +++ b/llvm/include/llvm/Support/MD5.h @@ -90,6 +90,12 @@ /// Finishes off the hash and puts the result in result. void final(MD5Result &Result); + /// Finishes the hash, and returns the result as a pair of words. + std::pair finalWords(); + + /// Finishes the hash, and returns the result as a hex string of length 32. + SmallString<32> final(); + /// Translates the bytes in \p Res to a hex string that is /// deposited into \p Str. The result will be of length 32. static void stringifyResult(MD5Result &Result, SmallString<32> &Str); diff --git a/llvm/lib/Support/MD5.cpp b/llvm/lib/Support/MD5.cpp --- a/llvm/lib/Support/MD5.cpp +++ b/llvm/lib/Support/MD5.cpp @@ -262,6 +262,20 @@ support::endian::write32le(&Result[12], d); } +/// Finish and return the hash as a pair of words. +std::pair MD5::finalWords() { + MD5Result Result; + final(Result); + return Result.words(); +} + +/// Finish and return the hash as a hex string of length 32. +SmallString<32> MD5::final() { + MD5Result Result; + final(Result); + return Result.digest(); +} + SmallString<32> MD5::MD5Result::digest() const { SmallString<32> Str; raw_svector_ostream Res(Str); diff --git a/llvm/unittests/Support/MD5Test.cpp b/llvm/unittests/Support/MD5Test.cpp --- a/llvm/unittests/Support/MD5Test.cpp +++ b/llvm/unittests/Support/MD5Test.cpp @@ -68,4 +68,22 @@ EXPECT_EQ(0x3be167ca6c49fb7dULL, MD5Res.high()); EXPECT_EQ(0x00e49261d7d3fcc3ULL, MD5Res.low()); } + +TEST(MD5Test, FinalHelpers) { + { + MD5 Hash; + Hash.update("abcd"); + SmallString<32> Result = Hash.final(); + const char *Expected = "e2fc714c4727ee9395f324cd2e7f331f"; + EXPECT_EQ(Result, Expected); + } + { + MD5 Hash; + Hash.update("abcd"); + std::pair Result = Hash.finalWords(); + auto Expected = std::make_pair(2248280477974983573ULL, + 10659500555211242722ULL); + EXPECT_EQ(Result, Expected); + } } +} // namespace