mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-08 17:42:09 +03:00
- Moved from unsigned long to uint32_t throughout code
This commit is contained in:
@@ -2704,7 +2704,7 @@ int x509parse_cert_info( char *buf, size_t size, const char *prefix,
|
||||
SAFE_SNPRINTF();
|
||||
|
||||
ret = snprintf( p, n, "\n%sRSA key size : %d bits\n", prefix,
|
||||
(int) crt->rsa.N.n * (int) sizeof( unsigned long ) * 8 );
|
||||
(int) crt->rsa.N.n * (int) sizeof( t_uint ) * 8 );
|
||||
SAFE_SNPRINTF();
|
||||
|
||||
return( (int) ( size - n ) );
|
||||
|
Reference in New Issue
Block a user