24
24
string md5 (const string str)
26
26
unsigned char md5sum[16];
28
28
[[maybe_unused]] int ret = mbedtls_md5_ret (input, str.size (), md5sum);
30
30
// Space for 32 bytes of hexits and one terminating null byte.
33
33
memset (hexits, 0, sizeof (hexits));