use tohex() for bin2hex conversion

This commit is contained in:
Michał Trojnara 2018-12-09 23:05:13 +01:00
parent d007c03bb6
commit 5a01658434

View File

@ -1196,9 +1196,9 @@ static int verify_leaf_hash(X509 *leaf, const char *leafhash)
/* compare the provided hash against the computed hash */ /* compare the provided hash against the computed hash */
if (memcmp(mdbuf, cmdbuf, EVP_MD_size(md))) { if (memcmp(mdbuf, cmdbuf, EVP_MD_size(md))) {
char *hexstr = OPENSSL_buf2hexstr(cmdbuf, EVP_MD_size(md)); char hexbuf[EVP_MAX_MD_SIZE*2+1];
printf("Hash value mismatch: %s computed\n", hexstr); tohex(cmdbuf, hexbuf, EVP_MD_size(md));
OPENSSL_free(hexstr); printf("Hash value mismatch: %s computed\n", hexbuf);
ret = 1; ret = 1;
goto out; goto out;
} }