123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #ifndef MBEDTLS_AESNI_H
- #define MBEDTLS_AESNI_H
- #include "aes.h"
- #define MBEDTLS_AESNI_AES 0x02000000u
- #define MBEDTLS_AESNI_CLMUL 0x00000002u
- #if defined(MBEDTLS_HAVE_ASM) && defined(__GNUC__) && \
- ( defined(__amd64__) || defined(__x86_64__) ) && \
- ! defined(MBEDTLS_HAVE_X86_64)
- #define MBEDTLS_HAVE_X86_64
- #endif
- #if defined(MBEDTLS_HAVE_X86_64)
- #ifdef __cplusplus
- extern "C" {
- #endif
- int mbedtls_aesni_has_support( unsigned int what );
- int mbedtls_aesni_crypt_ecb( mbedtls_aes_context *ctx,
- int mode,
- const unsigned char input[16],
- unsigned char output[16] );
- void mbedtls_aesni_gcm_mult( unsigned char c[16],
- const unsigned char a[16],
- const unsigned char b[16] );
- void mbedtls_aesni_inverse_key( unsigned char *invkey,
- const unsigned char *fwdkey, int nr );
- int mbedtls_aesni_setkey_enc( unsigned char *rk,
- const unsigned char *key,
- size_t bits );
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
|