catch case where blen%8 != 0
This commit is contained in:
parent
3fef07c03e
commit
40e4a66693
@ -78,7 +78,7 @@ int der_decode_raw_bit_string(const unsigned char *in, unsigned long inlen,
|
|||||||
blen = ((dlen - 1) << 3) - (in[x++] & 7);
|
blen = ((dlen - 1) << 3) - (in[x++] & 7);
|
||||||
|
|
||||||
/* too many bits? */
|
/* too many bits? */
|
||||||
if (blen/8 > *outlen) {
|
if ((blen + 7)/8 > *outlen) {
|
||||||
*outlen = blen;
|
*outlen = blen;
|
||||||
return CRYPT_BUFFER_OVERFLOW;
|
return CRYPT_BUFFER_OVERFLOW;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user