mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-09 22:17:26 +00:00
- Fixed typo
This commit is contained in:
parent
b6ecaf5276
commit
e91d01e144
|
@ -1090,8 +1090,11 @@ int aes_self_test( int verbose )
|
||||||
unsigned char buf[64];
|
unsigned char buf[64];
|
||||||
unsigned char prv[16];
|
unsigned char prv[16];
|
||||||
unsigned char iv[16];
|
unsigned char iv[16];
|
||||||
|
#if defined(POLARSSL_CIPHER_MODE_CTR) || defined(POLARSSL_CIPHER_MODE_CFB)
|
||||||
|
int offset;
|
||||||
|
#endif
|
||||||
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
||||||
int offset, len;
|
int len;
|
||||||
unsigned char nonce_counter[16];
|
unsigned char nonce_counter[16];
|
||||||
unsigned char stream_block[16];
|
unsigned char stream_block[16];
|
||||||
#endif
|
#endif
|
||||||
|
@ -1213,7 +1216,7 @@ int aes_self_test( int verbose )
|
||||||
if( verbose != 0 )
|
if( verbose != 0 )
|
||||||
printf( "\n" );
|
printf( "\n" );
|
||||||
|
|
||||||
#if defined(POLARSSL_CIPHERY_MODE_CFB)
|
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
||||||
/*
|
/*
|
||||||
* CFB128 mode
|
* CFB128 mode
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue