From 9152c925c0b4effccb820143533d3eb576ada8ac Mon Sep 17 00:00:00 2001 From: Per Allansson Date: Tue, 12 Mar 2013 20:43:54 +0100 Subject: [PATCH] Page hash verification now works Had it right from the start, but messed up the python script... --- misc/pagehash.py | 30 ++++++++++++------------- osslsigncode.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 70 insertions(+), 17 deletions(-) diff --git a/misc/pagehash.py b/misc/pagehash.py index 2ac5008..df9f4ab 100644 --- a/misc/pagehash.py +++ b/misc/pagehash.py @@ -7,20 +7,20 @@ from pyasn1.type import univ from pyasn1.codec.ber import encoder, decoder f = open(sys.argv[1], 'rb') -b = f.read(1024) -if b[0:2] != 'MZ': +filehdr = f.read(1024) +if filehdr[0:2] != 'MZ': print "Not a DOS file." sys.exit(0) -pepos = struct.unpack(' 0) { - printf("Page hash algorithm: %s\n", OBJ_nid2sn(phtype)); + printf("Page hash algorithm : %s\n", OBJ_nid2sn(phtype)); tohex(ph, hexbuf, (phlen < 32) ? phlen : 32); - printf("Page hash : %s ...\n\n", hexbuf); + printf("Page hash : %s ...\n", hexbuf); + unsigned char *cph = calc_page_hash(indata, peheader, pe32plus, sigpos, phtype); + tohex(cph, hexbuf, (phlen < 32) ? phlen : 32); + printf("Calculated page hash : %s ...%s\n\n", hexbuf, memcmp(ph, cph, phlen) ? " MISMATCH!!!":""); free(ph); + free(cph); } int seqhdrlen = asn1_simple_hdr_len(p7->d.sign->contents->d.other->value.sequence->data,