Add missing #ifdefs in aes.h
This commit is contained in:
parent
648656a628
commit
1ec220b002
2 changed files with 5 additions and 0 deletions
|
@ -129,6 +129,7 @@ int aes_crypt_cbc( aes_context *ctx,
|
|||
unsigned char *output );
|
||||
#endif /* POLARSSL_CIPHER_MODE_CBC */
|
||||
|
||||
#if defined(POLARSSL_CIPHER_MODE_CFB)
|
||||
/**
|
||||
* \brief AES-CFB128 buffer encryption/decryption.
|
||||
*
|
||||
|
@ -176,7 +177,9 @@ int aes_crypt_cfb8( aes_context *ctx,
|
|||
unsigned char iv[16],
|
||||
const unsigned char *input,
|
||||
unsigned char *output );
|
||||
#endif /*POLARSSL_CIPHER_MODE_CFB */
|
||||
|
||||
#if defined(POLARSSL_CIPHER_MODE_CTR)
|
||||
/**
|
||||
* \brief AES-CTR buffer encryption/decryption
|
||||
*
|
||||
|
@ -206,6 +209,7 @@ int aes_crypt_ctr( aes_context *ctx,
|
|||
unsigned char stream_block[16],
|
||||
const unsigned char *input,
|
||||
unsigned char *output );
|
||||
#endif /* POLARSSL_CIPHER_MODE_CTR */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
@ -982,6 +982,7 @@ int aes_crypt_ctr( aes_context *ctx,
|
|||
return( 0 );
|
||||
}
|
||||
#endif /* POLARSSL_CIPHER_MODE_CTR */
|
||||
|
||||
#endif /* !POLARSSL_AES_ALT */
|
||||
|
||||
#if defined(POLARSSL_SELF_TEST)
|
||||
|
|
Loading…
Reference in a new issue