From 0c15ccc4db7371d810ad895066a88955558f2cbf Mon Sep 17 00:00:00 2001 From: Per Allansson Date: Tue, 6 Jan 2015 09:08:26 +0100 Subject: [PATCH] speed up checksum calculation (patch from Veselin Georgiev) --- osslsigncode.c | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index 4e60c64..6ca3537 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -995,19 +995,29 @@ static void get_indirect_data_blob(u_char **blob, int *len, const EVP_MD *md, fi static unsigned int calc_pe_checksum(BIO *bio, unsigned int peheader) { unsigned int checkSum = 0; - unsigned short val; + unsigned short val; unsigned int size = 0; + unsigned short *buf; + int nread; /* recalc checksum. */ + buf = (unsigned short*)malloc(sizeof(unsigned short)*32768); + (void)BIO_seek(bio, 0); - while (BIO_read(bio, &val, 2) == 2) { - if (size == peheader + 88 || size == peheader + 90) - val = 0; - checkSum += val; - checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); - size += 2; + while ((nread = BIO_read(bio, buf, sizeof(unsigned short)*32768)) > 0) { + int i; + for (i = 0; i < nread / 2; i++) { + val = buf[i]; + if (size == peheader + 88 || size == peheader + 90) + val = 0; + checkSum += val; + checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); + size += 2; + } } + free(buf); + checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); checkSum += size;