Cleanup: remove MD5SumToString in lieu of FormatArrayAsHex

This commit is contained in:
Rubidium
2023-05-18 22:41:42 +02:00
committed by rubidium42
parent d9a04ba446
commit acec34a0fe
15 changed files with 15 additions and 29 deletions

View File

@@ -613,17 +613,6 @@ int CDECL seprintf(char *str, const char *last, const char *format, ...)
}
/**
* Convert the md5sum to a hexadecimal string representation
* @param md5sum the md5sum itself
* @return the string representation of the md5sum.
*/
std::string MD5SumToString(const MD5Hash &md5sum)
{
return FormatArrayAsHex(md5sum);
}
/* UTF-8 handling routines */