mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
use tohex() for bin2hex conversion
This commit is contained in:
parent
d007c03bb6
commit
5a01658434
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user