Symbol: AESNI_CAPABLE
crypto/openssl/crypto/evp/e_aes.c
137
#if defined(AESNI_CAPABLE)
crypto/openssl/crypto/evp/e_aes.c
442
return AESNI_CAPABLE ? &aesni_##keylen##_##mode : &aes_##keylen##_##mode; \
crypto/openssl/crypto/evp/e_aes.c
472
return AESNI_CAPABLE ? &aesni_##keylen##_##mode : &aes_##keylen##_##mode; \
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
938
return (OPENSSL_ia32cap_P[1] & AESNI_CAPABLE ? &aesni_128_cbc_hmac_sha1_cipher : NULL);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
943
return (OPENSSL_ia32cap_P[1] & AESNI_CAPABLE ? &aesni_256_cbc_hmac_sha1_cipher : NULL);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
914
return ((OPENSSL_ia32cap_P[1] & AESNI_CAPABLE) && aesni_cbc_sha256_enc(NULL, NULL, 0, NULL, NULL, NULL, NULL) ? &aesni_128_cbc_hmac_sha256_cipher : NULL);
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
919
return ((OPENSSL_ia32cap_P[1] & AESNI_CAPABLE) && aesni_cbc_sha256_enc(NULL, NULL, 0, NULL, NULL, NULL, NULL) ? &aesni_256_cbc_hmac_sha256_cipher : NULL);
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
19
#if !defined(AES_CBC_HMAC_SHA_CAPABLE) || !defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
19
#if !defined(AES_CBC_HMAC_SHA_CAPABLE) || !defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ccm_hw.c
60
#elif defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_hw.c
137
#elif defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_hw.c
143
#if defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb_hw.c
60
#if defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_ocb_hw.c
80
if (AESNI_CAPABLE) \
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts_hw.c
101
#if defined(AESNI_CAPABLE)
crypto/openssl/providers/implementations/ciphers/cipher_aes_xts_hw.c
147
if (AESNI_CAPABLE) \
sys/crypto/openssl/ossl_x86.c
127
if (!AESNI_CAPABLE)