Add comment to integer overflow fix in base64.c
Adds clarifying comment to the integer overflow fix in base64.c
This commit is contained in:
parent
4623d83c6f
commit
a29c5e9e66
1 changed files with 4 additions and 0 deletions
|
@ -192,6 +192,10 @@ int mbedtls_base64_decode( unsigned char *dst, size_t dlen, size_t *olen,
|
|||
return( 0 );
|
||||
}
|
||||
|
||||
/* The following expression is to calculate the following formula without
|
||||
* risk of integer overflow in n:
|
||||
* n = ( ( n * 6 ) + 7 ) >> 3;
|
||||
*/
|
||||
n = ( 6 * ( n >> 3 ) ) + ( ( 6 * ( n & 0x7 ) + 7 ) >> 3 );
|
||||
n -= j;
|
||||
|
||||
|
|
Loading…
Reference in a new issue