speed up checksum calculation (patch from Veselin Georgiev)

This commit is contained in:
Per Allansson 2015-01-06 09:08:26 +01:00
parent a912601140
commit 0c15ccc4db

View File

@ -997,16 +997,26 @@ static unsigned int calc_pe_checksum(BIO *bio, unsigned int peheader)
unsigned int checkSum = 0; unsigned int checkSum = 0;
unsigned short val; unsigned short val;
unsigned int size = 0; unsigned int size = 0;
unsigned short *buf;
int nread;
/* recalc checksum. */ /* recalc checksum. */
buf = (unsigned short*)malloc(sizeof(unsigned short)*32768);
(void)BIO_seek(bio, 0); (void)BIO_seek(bio, 0);
while (BIO_read(bio, &val, 2) == 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) if (size == peheader + 88 || size == peheader + 90)
val = 0; val = 0;
checkSum += val; checkSum += val;
checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); checkSum = 0xffff & (checkSum + (checkSum >> 0x10));
size += 2; size += 2;
} }
}
free(buf);
checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); checkSum = 0xffff & (checkSum + (checkSum >> 0x10));
checkSum += size; checkSum += size;