Add missing #ifdefs in aes.h

This commit is contained in:
Manuel Pégourié-Gonnard 2014-03-10 11:20:17 +01:00
parent 648656a628
commit 1ec220b002
2 changed files with 5 additions and 0 deletions

View File

@ -129,6 +129,7 @@ int aes_crypt_cbc( aes_context *ctx,
unsigned char *output ); unsigned char *output );
#endif /* POLARSSL_CIPHER_MODE_CBC */ #endif /* POLARSSL_CIPHER_MODE_CBC */
#if defined(POLARSSL_CIPHER_MODE_CFB)
/** /**
* \brief AES-CFB128 buffer encryption/decryption. * \brief AES-CFB128 buffer encryption/decryption.
* *
@ -176,7 +177,9 @@ int aes_crypt_cfb8( aes_context *ctx,
unsigned char iv[16], unsigned char iv[16],
const unsigned char *input, const unsigned char *input,
unsigned char *output ); unsigned char *output );
#endif /*POLARSSL_CIPHER_MODE_CFB */
#if defined(POLARSSL_CIPHER_MODE_CTR)
/** /**
* \brief AES-CTR buffer encryption/decryption * \brief AES-CTR buffer encryption/decryption
* *
@ -206,6 +209,7 @@ int aes_crypt_ctr( aes_context *ctx,
unsigned char stream_block[16], unsigned char stream_block[16],
const unsigned char *input, const unsigned char *input,
unsigned char *output ); unsigned char *output );
#endif /* POLARSSL_CIPHER_MODE_CTR */
#ifdef __cplusplus #ifdef __cplusplus
} }

View File

@ -982,6 +982,7 @@ int aes_crypt_ctr( aes_context *ctx,
return( 0 ); return( 0 );
} }
#endif /* POLARSSL_CIPHER_MODE_CTR */ #endif /* POLARSSL_CIPHER_MODE_CTR */
#endif /* !POLARSSL_AES_ALT */ #endif /* !POLARSSL_AES_ALT */
#if defined(POLARSSL_SELF_TEST) #if defined(POLARSSL_SELF_TEST)