diff options
author | tb <> | 2023-07-20 14:17:13 +0000 |
---|---|---|
committer | tb <> | 2023-07-20 14:17:13 +0000 |
commit | 2ff796228545d91878cdda87d6e7baee806fb5ba (patch) | |
tree | 7755bc4ec4a235d52e340ead235a63f7fd615a75 /src/lib | |
parent | a9f80214e7859e1d4188ac25022061e76dc2dac7 (diff) | |
download | openbsd-2ff796228545d91878cdda87d6e7baee806fb5ba.tar.gz openbsd-2ff796228545d91878cdda87d6e7baee806fb5ba.tar.bz2 openbsd-2ff796228545d91878cdda87d6e7baee806fb5ba.zip |
eng_aesni.c: add evp_local.h so it compiles again.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/engine/eng_aesni.c | 4 |
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! */ |