mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
speed up checksum calculation (patch from Veselin Georgiev)
This commit is contained in:
parent
a912601140
commit
0c15ccc4db
@ -997,16 +997,26 @@ static unsigned int calc_pe_checksum(BIO *bio, unsigned int peheader)
|
||||
unsigned int checkSum = 0;
|
||||
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) {
|
||||
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user