Use "" for include crypto/xxx

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15468)
This commit is contained in:
Rich Salz 2021-05-25 15:09:07 -04:00 committed by Pauli
parent 449bdf3746
commit 9d0dd1d513
6 changed files with 6 additions and 6 deletions

View File

@ -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,

View File

@ -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"

View File

@ -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 */

View File

@ -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"

View File

@ -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"

View File

@ -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.