xref: /freebsd/sys/crypto/openssl/ossl_x86.h (revision 197ff4c35bf00fb61603592476d5213a16027987)
1*197ff4c3SKornel Duleba /*
2*197ff4c3SKornel Duleba  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3*197ff4c3SKornel Duleba  *
4*197ff4c3SKornel Duleba  * Licensed under the OpenSSL license (the "License").  You may not use
5*197ff4c3SKornel Duleba  * this file except in compliance with the License.  You can obtain a copy
6*197ff4c3SKornel Duleba  * in the file LICENSE in the source distribution or at
7*197ff4c3SKornel Duleba  * https://www.openssl.org/source/license.html
8*197ff4c3SKornel Duleba  */
9*197ff4c3SKornel Duleba 
10*197ff4c3SKornel Duleba #ifndef __OSSL_X86__
11*197ff4c3SKornel Duleba #define __OSSL_X86__
12*197ff4c3SKornel Duleba 
13*197ff4c3SKornel Duleba #include <crypto/openssl/ossl.h>
14*197ff4c3SKornel Duleba #include <crypto/openssl/ossl_cipher.h>
15*197ff4c3SKornel Duleba 
16*197ff4c3SKornel Duleba /* aesni-x86_64.S, aesni-x86.S */
17*197ff4c3SKornel Duleba ossl_cipher_encrypt_t aesni_cbc_encrypt;
18*197ff4c3SKornel Duleba 
19*197ff4c3SKornel Duleba #define AES_CBC_ENCRYPT aesni_cbc_encrypt
20*197ff4c3SKornel Duleba #endif
21