mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
page hash verification
This commit is contained in:
parent
1715a02cd8
commit
b7f0461311
@ -2990,10 +2990,11 @@ static int verify_pe_pkcs7(PKCS7 *p7, char *indata, FILE_HEADER *header,
|
|||||||
tohex(ph, hexbuf, (phlen < 32) ? phlen : 32);
|
tohex(ph, hexbuf, (phlen < 32) ? phlen : 32);
|
||||||
printf("Page hash : %s ...\n", hexbuf);
|
printf("Page hash : %s ...\n", hexbuf);
|
||||||
size_t cphlen = 0;
|
size_t cphlen = 0;
|
||||||
unsigned char *cph = calc_page_hash(indata, header->header_size, header->pe32plus, header->sigpos, phtype, &phlen);
|
unsigned char *cph = calc_page_hash(indata, header->header_size, header->pe32plus, header->sigpos, phtype, &cphlen);
|
||||||
tohex(cph, hexbuf, (cphlen < 32) ? cphlen : 32);
|
tohex(cph, hexbuf, (cphlen < 32) ? cphlen : 32);
|
||||||
printf("Calculated page hash : %s ...%s\n\n", hexbuf,
|
mdok = (phlen != cphlen) || memcmp(ph, cph, phlen);
|
||||||
((phlen != cphlen) || memcmp(ph, cph, phlen)) ? " MISMATCH!!!":"");
|
if (mdok) ret = 1;
|
||||||
|
printf("Calculated page hash : %s ...%s\n\n", hexbuf, mdok ? " MISMATCH!!!":"");
|
||||||
OPENSSL_free(ph);
|
OPENSSL_free(ph);
|
||||||
OPENSSL_free(cph);
|
OPENSSL_free(cph);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user