From b0dd926baf4bcb43c9b178d7c252489f4434c5a8 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 11 Aug 2024 13:02:39 +0000 Subject: Provide and use crypto_arch.h. Provide a per architecture crypto_arch.h - this will be used in a similar manner to bn_arch.h and will allow for architecture specific #defines and static inline functions. Move the HAVE_AES_* and HAVE_RC4_* defines here. ok tb@ --- src/lib/libcrypto/crypto_internal.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/lib/libcrypto/crypto_internal.h') diff --git a/src/lib/libcrypto/crypto_internal.h b/src/lib/libcrypto/crypto_internal.h index 8229db2d68..7676076f67 100644 --- a/src/lib/libcrypto/crypto_internal.h +++ b/src/lib/libcrypto/crypto_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto_internal.h,v 1.10 2024/04/17 14:43:37 jsing Exp $ */ +/* $OpenBSD: crypto_internal.h,v 1.11 2024/08/11 13:02:39 jsing Exp $ */ /* * Copyright (c) 2023 Joel Sing * @@ -20,6 +20,8 @@ #include #include +#include "crypto_arch.h" + #ifndef HEADER_CRYPTO_INTERNAL_H #define HEADER_CRYPTO_INTERNAL_H -- cgit v1.2.3-55-g6feb