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

@ -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) 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) {
if (size == peheader + 88 || size == peheader + 90) int i;
val = 0; for (i = 0; i < nread / 2; i++) {
checkSum += val; val = buf[i];
checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); if (size == peheader + 88 || size == peheader + 90)
size += 2; val = 0;
checkSum += val;
checkSum = 0xffff & (checkSum + (checkSum >> 0x10));
size += 2;
}
} }
free(buf);
checkSum = 0xffff & (checkSum + (checkSum >> 0x10)); checkSum = 0xffff & (checkSum + (checkSum >> 0x10));
checkSum += size; checkSum += size;