summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/dh/dh_kdf.c2
-rw-r--r--crypto/ppccap.c2
-rw-r--r--engines/e_devcrypto.c2
-rw-r--r--providers/implementations/asymciphers/sm2_enc.c2
-rw-r--r--providers/implementations/kem/rsa_kem.c2
-rw-r--r--ssl/ktls.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/crypto/dh/dh_kdf.c b/crypto/dh/dh_kdf.c
index 0ec7644909..ecc37fa92a 100644
--- a/crypto/dh/dh_kdf.c
+++ b/crypto/dh/dh_kdf.c
@@ -22,7 +22,7 @@
#include <openssl/asn1.h>
#include <openssl/kdf.h>
#include "internal/provider.h"
-#include <crypto/dh.h>
+#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 2048be7b1d..4d28d84cae 100644
--- a/crypto/ppccap.c
+++ b/crypto/ppccap.c
@@ -29,7 +29,7 @@
#include <openssl/crypto.h>
#include <openssl/bn.h>
#include "internal/cryptlib.h"
-#include <crypto/chacha.h>
+#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 76255a978d..d279b601f5 100644
--- a/engines/e_devcrypto.c
+++ b/engines/e_devcrypto.c
@@ -24,7 +24,7 @@
#include <openssl/err.h>
#include <openssl/engine.h>
#include <openssl/objects.h>
-#include <crypto/cryptodev.h>
+#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 581ca632b2..a855a36d20 100644
--- a/providers/implementations/asymciphers/sm2_enc.c
+++ b/providers/implementations/asymciphers/sm2_enc.c
@@ -16,7 +16,7 @@
#include <openssl/params.h>
#include <openssl/err.h>
#include <openssl/proverr.h>
-#include <crypto/sm2.h>
+#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 9aa0a7aaee..1ccc57a8da 100644
--- a/providers/implementations/kem/rsa_kem.c
+++ b/providers/implementations/kem/rsa_kem.c
@@ -21,7 +21,7 @@
#include <openssl/rsa.h>
#include <openssl/params.h>
#include <openssl/err.h>
-#include <crypto/rsa.h>
+#include "crypto/rsa.h"
#include <openssl/proverr.h>
#include "prov/provider_ctx.h"
#include "prov/implementations.h"
diff --git a/ssl/ktls.c b/ssl/ktls.c
index 2d1ef693c2..4aece2e7b7 100644
--- a/ssl/ktls.c
+++ b/ssl/ktls.c
@@ -11,7 +11,7 @@
#include "internal/ktls.h"
#if defined(__FreeBSD__)
-# include <crypto/cryptodev.h>
+# include "crypto/cryptodev.h"
/*-
* Check if a given cipher is supported by the KTLS interface.