mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-29 08:14:27 +01:00
Avoid using %zu in selftest functions
This is a C99 feature and unfortunately we can't rely on it yet considering the set of toolchain (versions) we want to support.
This commit is contained in:
parent
823b7a0ce7
commit
b7e99006f9
@ -421,7 +421,7 @@ static const unsigned char test_mac[1][16] =
|
|||||||
|
|
||||||
int mbedtls_aead_chacha20_poly1305_self_test( int verbose )
|
int mbedtls_aead_chacha20_poly1305_self_test( int verbose )
|
||||||
{
|
{
|
||||||
size_t i;
|
unsigned i;
|
||||||
int result;
|
int result;
|
||||||
unsigned char output[200];
|
unsigned char output[200];
|
||||||
unsigned char mac[16];
|
unsigned char mac[16];
|
||||||
@ -430,7 +430,7 @@ int mbedtls_aead_chacha20_poly1305_self_test( int verbose )
|
|||||||
{
|
{
|
||||||
if ( verbose != 0 )
|
if ( verbose != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " ChaCha20-Poly1305 test %zu ", i );
|
mbedtls_printf( " ChaCha20-Poly1305 test %u ", i );
|
||||||
}
|
}
|
||||||
|
|
||||||
result = mbedtls_aead_chacha20_poly1305_crypt_and_mac( test_key[i],
|
result = mbedtls_aead_chacha20_poly1305_crypt_and_mac( test_key[i],
|
||||||
|
@ -554,14 +554,14 @@ static const size_t test_lengths[2] =
|
|||||||
int mbedtls_chacha20_self_test( int verbose )
|
int mbedtls_chacha20_self_test( int verbose )
|
||||||
{
|
{
|
||||||
unsigned char output[381];
|
unsigned char output[381];
|
||||||
size_t i;
|
unsigned i;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
for ( i = 0U; i < 2U; i++ )
|
for ( i = 0U; i < 2U; i++ )
|
||||||
{
|
{
|
||||||
if ( verbose != 0 )
|
if ( verbose != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " ChaCha20 test %zu ", i );
|
mbedtls_printf( " ChaCha20 test %u ", i );
|
||||||
}
|
}
|
||||||
|
|
||||||
result = mbedtls_chacha20_crypt( test_keys[i],
|
result = mbedtls_chacha20_crypt( test_keys[i],
|
||||||
|
@ -485,14 +485,14 @@ static const unsigned char test_mac[2][16] =
|
|||||||
int mbedtls_poly1305_self_test( int verbose )
|
int mbedtls_poly1305_self_test( int verbose )
|
||||||
{
|
{
|
||||||
unsigned char mac[16];
|
unsigned char mac[16];
|
||||||
size_t i;
|
unsigned i;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
for ( i = 0U; i < 2U; i++ )
|
for ( i = 0U; i < 2U; i++ )
|
||||||
{
|
{
|
||||||
if ( verbose != 0 )
|
if ( verbose != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " Poly1305 test %zu ", i );
|
mbedtls_printf( " Poly1305 test %u ", i );
|
||||||
}
|
}
|
||||||
|
|
||||||
result = mbedtls_poly1305_mac( test_keys[i],
|
result = mbedtls_poly1305_mac( test_keys[i],
|
||||||
|
Loading…
Reference in New Issue
Block a user