Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/crypto/openssl/ossl_x86.h
39483 views
1
/*
2
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3
*
4
* Licensed under the OpenSSL license (the "License"). You may not use
5
* this file except in compliance with the License. You can obtain a copy
6
* in the file LICENSE in the source distribution or at
7
* https://www.openssl.org/source/license.html
8
*/
9
10
#ifndef __OSSL_X86__
11
#define __OSSL_X86__
12
13
#include <crypto/openssl/ossl.h>
14
#include <crypto/openssl/ossl_cipher.h>
15
16
/* aesni-x86_64.S, aesni-x86.S */
17
ossl_cipher_encrypt_t aesni_cbc_encrypt;
18
19
#define AES_CBC_ENCRYPT aesni_cbc_encrypt
20
#endif
21
22