Home
last modified time | relevance | path

Searched refs:AESNI_CAPABLE (Results 1 – 15 of 15) sorted by relevance

/freebsd/sys/crypto/openssl/
H A Dossl_x86.c52 #define AESNI_CAPABLE (OPENSSL_ia32cap_P[1]&(1<<(57-32))) macro
127 if (!AESNI_CAPABLE) in ossl_cpuid()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb_hw.c62 # if defined(AESNI_CAPABLE)
82 if (AESNI_CAPABLE) \
H A Dcipher_aes_xts_hw.c100 #if defined(AESNI_CAPABLE)
120 if (AESNI_CAPABLE) \
H A Dcipher_aes_ccm_hw.c60 #elif defined(AESNI_CAPABLE)
H A Dcipher_aes_ccm_hw_aesni.inc37 return AESNI_CAPABLE ? &aesni_ccm : &aes_ccm;
H A Dcipher_aes_gcm_hw_aesni.inc36 return AESNI_CAPABLE ? &aesni_gcm : &aes_gcm;
H A Dcipher_aes_gcm_hw.c138 #elif defined(AESNI_CAPABLE)
H A Dcipher_aes_hw_aesni.inc83 if (AESNI_CAPABLE) \
H A Dcipher_aes_hw.c139 #if defined(AESNI_CAPABLE)
H A Dcipher_aes_cbc_hmac_sha1_hw.c19 #if !defined(AES_CBC_HMAC_SHA_CAPABLE) || !defined(AESNI_CAPABLE)
H A Dcipher_aes_cbc_hmac_sha256_hw.c19 #if !defined(AES_CBC_HMAC_SHA_CAPABLE) || !defined(AESNI_CAPABLE)
/freebsd/crypto/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c47 # define AESNI_CAPABLE (1<<(57-32)) macro
950 return (OPENSSL_ia32cap_P[1] & AESNI_CAPABLE ? in EVP_aes_128_cbc_hmac_sha1()
956 return (OPENSSL_ia32cap_P[1] & AESNI_CAPABLE ? in EVP_aes_256_cbc_hmac_sha1()
H A De_aes_cbc_hmac_sha256.c47 # define AESNI_CAPABLE (1<<(57-32)) macro
934 return ((OPENSSL_ia32cap_P[1] & AESNI_CAPABLE) && in EVP_aes_128_cbc_hmac_sha256()
941 return ((OPENSSL_ia32cap_P[1] & AESNI_CAPABLE) && in EVP_aes_256_cbc_hmac_sha256()
H A De_aes.c137 #if defined(AESNI_CAPABLE)
417 { return AESNI_CAPABLE?&aesni_##keylen##_##mode:&aes_##keylen##_##mode; }
443 { return AESNI_CAPABLE?&aesni_##keylen##_##mode:&aes_##keylen##_##mode; }
/freebsd/crypto/openssl/include/crypto/
H A Daes_platform.h147 # define AESNI_CAPABLE (OPENSSL_ia32cap_P[1]&(1<<(57-32))) macro