summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto
diff options
context:
space:
mode:
authortb <>2023-07-20 14:17:13 +0000
committertb <>2023-07-20 14:17:13 +0000
commitf16b9461a3ec0f6d14cf9cc2aad7d440f94f6483 (patch)
tree7755bc4ec4a235d52e340ead235a63f7fd615a75 /src/lib/libcrypto
parent8dba3f0ec65b4d158df0faf444b380ad3f2373e3 (diff)
downloadopenbsd-f16b9461a3ec0f6d14cf9cc2aad7d440f94f6483.tar.gz
openbsd-f16b9461a3ec0f6d14cf9cc2aad7d440f94f6483.tar.bz2
openbsd-f16b9461a3ec0f6d14cf9cc2aad7d440f94f6483.zip
eng_aesni.c: add evp_local.h so it compiles again.
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r--src/lib/libcrypto/engine/eng_aesni.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/engine/eng_aesni.c b/src/lib/libcrypto/engine/eng_aesni.c
index cce4203bc4..513f5a7ec5 100644
--- a/src/lib/libcrypto/engine/eng_aesni.c
+++ b/src/lib/libcrypto/engine/eng_aesni.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: eng_aesni.c,v 1.12 2022/12/26 07:18:51 jmc Exp $ */ 1/* $OpenBSD: eng_aesni.c,v 1.13 2023/07/20 14:17:13 tb Exp $ */
2/* 2/*
3 * Support for Intel AES-NI instruction set 3 * Support for Intel AES-NI instruction set
4 * Author: Huang Ying <ying.huang@intel.com> 4 * Author: Huang Ying <ying.huang@intel.com>
@@ -85,6 +85,8 @@
85#include <openssl/err.h> 85#include <openssl/err.h>
86#include <openssl/evp.h> 86#include <openssl/evp.h>
87 87
88#include "evp_local.h"
89
88/* AES-NI is available *ONLY* on some x86 CPUs. Not only that it 90/* AES-NI is available *ONLY* on some x86 CPUs. Not only that it
89 doesn't exist elsewhere, but it even can't be compiled on other 91 doesn't exist elsewhere, but it even can't be compiled on other
90 platforms! */ 92 platforms! */