From 9d0dd1d51335cd17d2594adfe4d30142f2ab8b19 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Tue, 25 May 2021 15:09:07 -0400 Subject: [PATCH] Use "" for include crypto/xxx Reviewed-by: Shane Lontis Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15468) --- crypto/dh/dh_kdf.c | 2 +- crypto/ppccap.c | 2 +- engines/e_devcrypto.c | 2 +- providers/implementations/asymciphers/sm2_enc.c | 2 +- providers/implementations/kem/rsa_kem.c | 2 +- ssl/ktls.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crypto/dh/dh_kdf.c b/crypto/dh/dh_kdf.c index 0ec76449094..ecc37fa92ab 100644 --- a/crypto/dh/dh_kdf.c +++ b/crypto/dh/dh_kdf.c @@ -22,7 +22,7 @@ #include #include #include "internal/provider.h" -#include +#include "crypto/dh.h" /* Key derivation function from X9.63/SECG */ int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen, diff --git a/crypto/ppccap.c b/crypto/ppccap.c index 2048be7b1d2..4d28d84cae2 100644 --- a/crypto/ppccap.c +++ b/crypto/ppccap.c @@ -29,7 +29,7 @@ #include #include #include "internal/cryptlib.h" -#include +#include "crypto/chacha.h" #include "bn/bn_local.h" #include "ppc_arch.h" diff --git a/engines/e_devcrypto.c b/engines/e_devcrypto.c index 76255a978d8..d279b601f53 100644 --- a/engines/e_devcrypto.c +++ b/engines/e_devcrypto.c @@ -24,7 +24,7 @@ #include #include #include -#include +#include "crypto/cryptodev.h" /* #define ENGINE_DEVCRYPTO_DEBUG */ diff --git a/providers/implementations/asymciphers/sm2_enc.c b/providers/implementations/asymciphers/sm2_enc.c index 581ca632b2a..a855a36d20e 100644 --- a/providers/implementations/asymciphers/sm2_enc.c +++ b/providers/implementations/asymciphers/sm2_enc.c @@ -16,7 +16,7 @@ #include #include #include -#include +#include "crypto/sm2.h" #include "prov/provider_ctx.h" #include "prov/implementations.h" #include "prov/provider_util.h" diff --git a/providers/implementations/kem/rsa_kem.c b/providers/implementations/kem/rsa_kem.c index 9aa0a7aaeea..1ccc57a8da6 100644 --- a/providers/implementations/kem/rsa_kem.c +++ b/providers/implementations/kem/rsa_kem.c @@ -21,7 +21,7 @@ #include #include #include -#include +#include "crypto/rsa.h" #include #include "prov/provider_ctx.h" #include "prov/implementations.h" diff --git a/ssl/ktls.c b/ssl/ktls.c index 2d1ef693c24..4aece2e7b76 100644 --- a/ssl/ktls.c +++ b/ssl/ktls.c @@ -11,7 +11,7 @@ #include "internal/ktls.h" #if defined(__FreeBSD__) -# include +# include "crypto/cryptodev.h" /*- * Check if a given cipher is supported by the KTLS interface. -- 2.47.3