Add GetRawDigest() for hashes

This commit is contained in:
hashlag
2025-08-09 21:52:01 +03:00
parent 5eec6231b7
commit 9b4f4a2ef5
3 changed files with 15 additions and 0 deletions

View File

@@ -131,6 +131,11 @@ private:
struct Md4Hash : public Hash<Md4Hash>
{
std::array<uint8_t, 16> GetRawDigest() const
{
return RawDigest;
}
std::string ToHexString() const
{
char buf[33];