mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-29 09:04:22 +01:00
Add missing #ifdefs in aes.h
This commit is contained in:
parent
648656a628
commit
1ec220b002
@ -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
|
||||||
}
|
}
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user