From: Richard Levitte Date: Thu, 14 May 2015 14:56:48 +0000 (+0200) Subject: Identify and move common internal libcrypto header files X-Git-Tag: OpenSSL_1_1_0-pre1~1140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b39fc560612984e65ec30d7f37487303bf514fb3;p=thirdparty%2Fopenssl.git Identify and move common internal libcrypto header files There are header files in crypto/ that are used by a number of crypto/ submodules. Move those to crypto/include/internal and adapt the affected source code and Makefiles. The header files that got moved are: crypto/cryptolib.h crypto/md32_common.h Reviewed-by: Rich Salz --- diff --git a/crypto/Makefile b/crypto/Makefile index 33ec1b83b3a..caffc77b4a1 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -43,7 +43,7 @@ LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o \ SRC= $(LIBSRC) -HEADER= cryptlib.h buildinf.h md32_common.h +HEADER= buildinf.h arm_arch.h ppc_arch.h sparc_arch.h ALL= $(GENERAL) $(SRC) $(HEADER) diff --git a/crypto/aes/aes_ige.c b/crypto/aes/aes_ige.c index cf31c9bba44..c789cc06ab2 100644 --- a/crypto/aes/aes_ige.c +++ b/crypto/aes/aes_ige.c @@ -49,7 +49,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "aes_locl.h" diff --git a/crypto/aes/aes_wrap.c b/crypto/aes/aes_wrap.c index b7b64d57a48..b370a4f9a01 100644 --- a/crypto/aes/aes_wrap.c +++ b/crypto/aes/aes_wrap.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/a_bitstr.c b/crypto/asn1/a_bitstr.c index 60b6e6d4038..5f7ae6a3734 100644 --- a/crypto/asn1/a_bitstr.c +++ b/crypto/asn1/a_bitstr.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "asn1_locl.h" diff --git a/crypto/asn1/a_d2i_fp.c b/crypto/asn1/a_d2i_fp.c index 13e47fde084..2e61029a1d1 100644 --- a/crypto/asn1/a_d2i_fp.c +++ b/crypto/asn1/a_d2i_fp.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/a_digest.c b/crypto/asn1/a_digest.c index 8fac13b89e8..57adcccd499 100644 --- a/crypto/asn1/a_digest.c +++ b/crypto/asn1/a_digest.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_SYS_TYPES_H # include diff --git a/crypto/asn1/a_dup.c b/crypto/asn1/a_dup.c index 349ab562137..60d3544365f 100644 --- a/crypto/asn1/a_dup.c +++ b/crypto/asn1/a_dup.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef NO_OLD_ASN1 diff --git a/crypto/asn1/a_enum.c b/crypto/asn1/a_enum.c index aed3de5feef..81c0f3a14c0 100644 --- a/crypto/asn1/a_enum.c +++ b/crypto/asn1/a_enum.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/a_gentm.c b/crypto/asn1/a_gentm.c index 324496e30ca..209880ced8a 100644 --- a/crypto/asn1/a_gentm.c +++ b/crypto/asn1/a_gentm.c @@ -62,7 +62,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "asn1_locl.h" diff --git a/crypto/asn1/a_i2d_fp.c b/crypto/asn1/a_i2d_fp.c index e0f236e6408..353c2c56059 100644 --- a/crypto/asn1/a_i2d_fp.c +++ b/crypto/asn1/a_i2d_fp.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/a_int.c b/crypto/asn1/a_int.c index 228297803b5..56a72fb7596 100644 --- a/crypto/asn1/a_int.c +++ b/crypto/asn1/a_int.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "asn1_locl.h" diff --git a/crypto/asn1/a_mbstr.c b/crypto/asn1/a_mbstr.c index ddb27980696..241eb60bcc3 100644 --- a/crypto/asn1/a_mbstr.c +++ b/crypto/asn1/a_mbstr.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int traverse_string(const unsigned char *p, int len, int inform, diff --git a/crypto/asn1/a_object.c b/crypto/asn1/a_object.c index 7cedce82e7e..ab37fa315f0 100644 --- a/crypto/asn1/a_object.c +++ b/crypto/asn1/a_object.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/a_octet.c b/crypto/asn1/a_octet.c index f6fd62224a7..430f00faee1 100644 --- a/crypto/asn1/a_octet.c +++ b/crypto/asn1/a_octet.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *x) diff --git a/crypto/asn1/a_print.c b/crypto/asn1/a_print.c index 0e129cb142a..05d12a5927d 100644 --- a/crypto/asn1/a_print.c +++ b/crypto/asn1/a_print.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include int ASN1_PRINTABLE_type(const unsigned char *s, int len) diff --git a/crypto/asn1/a_sign.c b/crypto/asn1/a_sign.c index e189958174c..ab1959e8127 100644 --- a/crypto/asn1/a_sign.c +++ b/crypto/asn1/a_sign.c @@ -112,7 +112,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_SYS_TYPES_H # include diff --git a/crypto/asn1/a_strex.c b/crypto/asn1/a_strex.c index 243e29a8fee..2f233a26082 100644 --- a/crypto/asn1/a_strex.c +++ b/crypto/asn1/a_strex.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/a_strnid.c b/crypto/asn1/a_strnid.c index 92d4134fc57..7bfc76816f7 100644 --- a/crypto/asn1/a_strnid.c +++ b/crypto/asn1/a_strnid.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/a_time.c b/crypto/asn1/a_time.c index 6114c52dc7a..c2b556523bc 100644 --- a/crypto/asn1/a_time.c +++ b/crypto/asn1/a_time.c @@ -63,7 +63,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "asn1_locl.h" diff --git a/crypto/asn1/a_type.c b/crypto/asn1/a_type.c index 283baaaeaed..474aecadc6b 100644 --- a/crypto/asn1/a_type.c +++ b/crypto/asn1/a_type.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "asn1_locl.h" diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c index 5fd1a6a3c49..9144922ab4d 100644 --- a/crypto/asn1/a_utctm.c +++ b/crypto/asn1/a_utctm.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "asn1_locl.h" diff --git a/crypto/asn1/a_utf8.c b/crypto/asn1/a_utf8.c index 23dc2e828ab..8697c66efde 100644 --- a/crypto/asn1/a_utf8.c +++ b/crypto/asn1/a_utf8.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* UTF8 utilities */ diff --git a/crypto/asn1/a_verify.c b/crypto/asn1/a_verify.c index 5b908f14ced..540b71c4d4a 100644 --- a/crypto/asn1/a_verify.c +++ b/crypto/asn1/a_verify.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_SYS_TYPES_H # include diff --git a/crypto/asn1/ameth_lib.c b/crypto/asn1/ameth_lib.c index ce4c0dcaf93..1a615431ccc 100644 --- a/crypto/asn1/ameth_lib.c +++ b/crypto/asn1/ameth_lib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #ifndef OPENSSL_NO_ENGINE diff --git a/crypto/asn1/asn1_gen.c b/crypto/asn1/asn1_gen.c index 3ff1db8e0b9..5f01b8dac14 100644 --- a/crypto/asn1/asn1_gen.c +++ b/crypto/asn1/asn1_gen.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/asn1_lib.c b/crypto/asn1/asn1_lib.c index bda6ab09b4b..b611f35f220 100644 --- a/crypto/asn1/asn1_lib.c +++ b/crypto/asn1/asn1_lib.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, diff --git a/crypto/asn1/asn1_par.c b/crypto/asn1/asn1_par.c index 574e8de8670..9a370cd4bc7 100644 --- a/crypto/asn1/asn1_par.c +++ b/crypto/asn1/asn1_par.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/asn_mime.c b/crypto/asn1/asn_mime.c index 9ce4013049b..2a227be5c53 100644 --- a/crypto/asn1/asn_mime.c +++ b/crypto/asn1/asn_mime.c @@ -55,7 +55,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/asn_moid.c b/crypto/asn1/asn_moid.c index 9459bb249ea..bb334d015e5 100644 --- a/crypto/asn1/asn_moid.c +++ b/crypto/asn1/asn_moid.c @@ -60,7 +60,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/asn_mstbl.c b/crypto/asn1/asn_mstbl.c index a2e80b1fd6c..b53715783a3 100644 --- a/crypto/asn1/asn_mstbl.c +++ b/crypto/asn1/asn_mstbl.c @@ -56,7 +56,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/asn_pack.c b/crypto/asn1/asn_pack.c index b80016ba827..d8655badb8d 100644 --- a/crypto/asn1/asn_pack.c +++ b/crypto/asn1/asn_pack.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* ASN1 packing and unpacking functions */ diff --git a/crypto/asn1/d2i_pr.c b/crypto/asn1/d2i_pr.c index 793532f4933..b92af8b5f4f 100644 --- a/crypto/asn1/d2i_pr.c +++ b/crypto/asn1/d2i_pr.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/d2i_pu.c b/crypto/asn1/d2i_pu.c index 189cfddf1e4..11176f0e16d 100644 --- a/crypto/asn1/d2i_pu.c +++ b/crypto/asn1/d2i_pu.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/evp_asn1.c b/crypto/asn1/evp_asn1.c index bf131a44f0e..4c3f3e0ffe1 100644 --- a/crypto/asn1/evp_asn1.c +++ b/crypto/asn1/evp_asn1.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/f_enum.c b/crypto/asn1/f_enum.c index eabfd3796ec..4b85be933cb 100644 --- a/crypto/asn1/f_enum.c +++ b/crypto/asn1/f_enum.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/f_int.c b/crypto/asn1/f_int.c index 880c2840247..61029fa5865 100644 --- a/crypto/asn1/f_int.c +++ b/crypto/asn1/f_int.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/f_string.c b/crypto/asn1/f_string.c index c82f2a192d4..cecbb4a0b24 100644 --- a/crypto/asn1/f_string.c +++ b/crypto/asn1/f_string.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/i2d_pr.c b/crypto/asn1/i2d_pr.c index 2a6aa19c07c..54a3d7b4bd0 100644 --- a/crypto/asn1/i2d_pr.c +++ b/crypto/asn1/i2d_pr.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/asn1_int.h" diff --git a/crypto/asn1/i2d_pu.c b/crypto/asn1/i2d_pu.c index b8ed355411d..e1f702acd84 100644 --- a/crypto/asn1/i2d_pu.c +++ b/crypto/asn1/i2d_pu.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/n_pkey.c b/crypto/asn1/n_pkey.c index 0d8480b8dd8..1b8c4c0a8d9 100644 --- a/crypto/asn1/n_pkey.c +++ b/crypto/asn1/n_pkey.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_RSA # include # include diff --git a/crypto/asn1/p5_pbe.c b/crypto/asn1/p5_pbe.c index ec738ded185..cc91fad53b2 100644 --- a/crypto/asn1/p5_pbe.c +++ b/crypto/asn1/p5_pbe.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/p5_pbev2.c b/crypto/asn1/p5_pbev2.c index c7a12402b22..23ed232dd38 100644 --- a/crypto/asn1/p5_pbev2.c +++ b/crypto/asn1/p5_pbev2.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/p8_pkey.c b/crypto/asn1/p8_pkey.c index 0a425cd29d1..ff55a5bdb0f 100644 --- a/crypto/asn1/p8_pkey.c +++ b/crypto/asn1/p8_pkey.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/t_bitst.c b/crypto/asn1/t_bitst.c index 83c5af7005f..daee7f550c2 100644 --- a/crypto/asn1/t_bitst.c +++ b/crypto/asn1/t_bitst.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/t_crl.c b/crypto/asn1/t_crl.c index 7becb4ce4e8..96c5226a5c6 100644 --- a/crypto/asn1/t_crl.c +++ b/crypto/asn1/t_crl.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/t_pkey.c b/crypto/asn1/t_pkey.c index f31e5e175fd..b137da7cb23 100644 --- a/crypto/asn1/t_pkey.c +++ b/crypto/asn1/t_pkey.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/bn_int.h" diff --git a/crypto/asn1/t_req.c b/crypto/asn1/t_req.c index 01eabfadd83..fd830233356 100644 --- a/crypto/asn1/t_req.c +++ b/crypto/asn1/t_req.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/t_spki.c b/crypto/asn1/t_spki.c index 3bf48db5099..46914f900f0 100644 --- a/crypto/asn1/t_spki.c +++ b/crypto/asn1/t_spki.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #ifndef OPENSSL_NO_RSA diff --git a/crypto/asn1/t_x509.c b/crypto/asn1/t_x509.c index 76c6c1ecbc5..377be399df6 100644 --- a/crypto/asn1/t_x509.c +++ b/crypto/asn1/t_x509.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #ifndef OPENSSL_NO_RSA diff --git a/crypto/asn1/t_x509a.c b/crypto/asn1/t_x509a.c index f4b8f94cb35..12fedb8edf7 100644 --- a/crypto/asn1/t_x509a.c +++ b/crypto/asn1/t_x509a.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/tasn_enc.c b/crypto/asn1/tasn_enc.c index 74f3eda2e79..35860e45147 100644 --- a/crypto/asn1/tasn_enc.c +++ b/crypto/asn1/tasn_enc.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/tasn_prn.c b/crypto/asn1/tasn_prn.c index e080e724a42..716db8f7c20 100644 --- a/crypto/asn1/tasn_prn.c +++ b/crypto/asn1/tasn_prn.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/tasn_scn.c b/crypto/asn1/tasn_scn.c index 43a125cb55a..f0d37d10447 100644 --- a/crypto/asn1/tasn_scn.c +++ b/crypto/asn1/tasn_scn.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/x_bignum.c b/crypto/asn1/x_bignum.c index a5a403c26e1..8307a2d7292 100644 --- a/crypto/asn1/x_bignum.c +++ b/crypto/asn1/x_bignum.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/x_crl.c b/crypto/asn1/x_crl.c index 0d759beb6d8..d264ec70912 100644 --- a/crypto/asn1/x_crl.c +++ b/crypto/asn1/x_crl.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "asn1_locl.h" #include diff --git a/crypto/asn1/x_info.c b/crypto/asn1/x_info.c index 856bcf58b2e..5be934c6900 100644 --- a/crypto/asn1/x_info.c +++ b/crypto/asn1/x_info.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/x_long.c b/crypto/asn1/x_long.c index 3aed44a3ddf..d4b75e6b9aa 100644 --- a/crypto/asn1/x_long.c +++ b/crypto/asn1/x_long.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/x_pkey.c b/crypto/asn1/x_pkey.c index b01616fb8dc..afd3aab2d23 100644 --- a/crypto/asn1/x_pkey.c +++ b/crypto/asn1/x_pkey.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/x_pubkey.c b/crypto/asn1/x_pubkey.c index 2605f07013b..d20afb982ee 100644 --- a/crypto/asn1/x_pubkey.c +++ b/crypto/asn1/x_pubkey.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/asn1_int.h" diff --git a/crypto/asn1/x_req.c b/crypto/asn1/x_req.c index ae293aa0ca9..1679a56070f 100644 --- a/crypto/asn1/x_req.c +++ b/crypto/asn1/x_req.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/x_sig.c b/crypto/asn1/x_sig.c index dd33720c107..472174b3c60 100644 --- a/crypto/asn1/x_sig.c +++ b/crypto/asn1/x_sig.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/x_spki.c b/crypto/asn1/x_spki.c index 1df6b87d2bb..88625655f16 100644 --- a/crypto/asn1/x_spki.c +++ b/crypto/asn1/x_spki.c @@ -62,7 +62,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/x_val.c b/crypto/asn1/x_val.c index ee75a1e2545..845a7c30f64 100644 --- a/crypto/asn1/x_val.c +++ b/crypto/asn1/x_val.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/asn1/x_x509.c b/crypto/asn1/x_x509.c index 1b353af8445..17bbb913f6c 100644 --- a/crypto/asn1/x_x509.c +++ b/crypto/asn1/x_x509.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/asn1/x_x509a.c b/crypto/asn1/x_x509a.c index b0a6b4a70ab..d81ccfb62f2 100644 --- a/crypto/asn1/x_x509a.c +++ b/crypto/asn1/x_x509a.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/bio/b_dump.c b/crypto/bio/b_dump.c index 622a261d52b..33191c1b30c 100644 --- a/crypto/bio/b_dump.c +++ b/crypto/bio/b_dump.c @@ -61,7 +61,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bio_lcl.h" #define TRUNCATE diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 7c81e25d482..06cadc8a637 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -72,7 +72,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_SYS_TYPES_H # include #endif diff --git a/crypto/bio/b_sock.c b/crypto/bio/b_sock.c index e3a1ee94da4..48e40360ad2 100644 --- a/crypto/bio/b_sock.c +++ b/crypto/bio/b_sock.c @@ -60,7 +60,7 @@ #include #include #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #if defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_BSDSOCK) # include diff --git a/crypto/bio/bf_buff.c b/crypto/bio/bf_buff.c index 6487f437d59..4fd8d15405b 100644 --- a/crypto/bio/bf_buff.c +++ b/crypto/bio/bf_buff.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int buffer_write(BIO *h, const char *buf, int num); diff --git a/crypto/bio/bf_lbuf.c b/crypto/bio/bf_lbuf.c index e948e924b92..cc429813e2f 100644 --- a/crypto/bio/bf_lbuf.c +++ b/crypto/bio/bf_lbuf.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/bio/bf_nbio.c b/crypto/bio/bf_nbio.c index dc98c4fd5da..7980711d3d2 100644 --- a/crypto/bio/bf_nbio.c +++ b/crypto/bio/bf_nbio.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/bio/bf_null.c b/crypto/bio/bf_null.c index e0c79e8291c..0d55b151503 100644 --- a/crypto/bio/bf_null.c +++ b/crypto/bio/bf_null.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* diff --git a/crypto/bio/bio_cb.c b/crypto/bio/bio_cb.c index dcb428b3514..f0dfe8268cf 100644 --- a/crypto/bio/bio_cb.c +++ b/crypto/bio/bio_cb.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/bio/bio_lib.c b/crypto/bio/bio_lib.c index 7542d1c885d..19cd06983f0 100644 --- a/crypto/bio/bio_lib.c +++ b/crypto/bio/bio_lib.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/bio/bss_acpt.c b/crypto/bio/bss_acpt.c index 48435b09ebd..16a660800d6 100644 --- a/crypto/bio/bss_acpt.c +++ b/crypto/bio/bss_acpt.c @@ -59,7 +59,7 @@ #include #include #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_SOCK diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index 9b2cee44cf1..f23adb217af 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -59,7 +59,7 @@ #include #include #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_SOCK diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c index 268481c9ab7..58725a1466e 100644 --- a/crypto/bio/bss_dgram.c +++ b/crypto/bio/bss_dgram.c @@ -60,7 +60,7 @@ #include #include #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_DGRAM diff --git a/crypto/bio/bss_fd.c b/crypto/bio/bss_fd.c index 5f4e34481b0..5bade20e36b 100644 --- a/crypto/bio/bss_fd.c +++ b/crypto/bio/bss_fd.c @@ -59,7 +59,7 @@ #include #include #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #if defined(OPENSSL_NO_POSIX_IO) /* diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c index 1da6b861810..cebad754567 100644 --- a/crypto/bio/bss_file.c +++ b/crypto/bio/bss_file.c @@ -85,7 +85,7 @@ # include # include -# include "cryptlib.h" +# include "internal/cryptlib.h" # include "bio_lcl.h" # include diff --git a/crypto/bio/bss_log.c b/crypto/bio/bss_log.c index 2399ff8b10f..f59ec7cce7a 100644 --- a/crypto/bio/bss_log.c +++ b/crypto/bio/bss_log.c @@ -65,7 +65,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #if defined(OPENSSL_SYS_WINCE) #elif defined(OPENSSL_SYS_WIN32) diff --git a/crypto/bio/bss_mem.c b/crypto/bio/bss_mem.c index c55344d320c..a1f5e8d9603 100644 --- a/crypto/bio/bss_mem.c +++ b/crypto/bio/bss_mem.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int mem_write(BIO *h, const char *buf, int num); diff --git a/crypto/bio/bss_null.c b/crypto/bio/bss_null.c index 6a03fa24652..ba39c4c8a15 100644 --- a/crypto/bio/bss_null.c +++ b/crypto/bio/bss_null.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int null_write(BIO *h, const char *buf, int num); diff --git a/crypto/bio/bss_sock.c b/crypto/bio/bss_sock.c index 5a73e81315d..1673b32b3d6 100644 --- a/crypto/bio/bss_sock.c +++ b/crypto/bio/bss_sock.c @@ -59,7 +59,7 @@ #include #include #define USE_SOCKETS -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_SOCK diff --git a/crypto/bn/bn_add.c b/crypto/bn/bn_add.c index 57e1cdac166..a446686c747 100644 --- a/crypto/bn/bn_add.c +++ b/crypto/bn/bn_add.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" /* r can == a or b */ diff --git a/crypto/bn/bn_asm.c b/crypto/bn/bn_asm.c index cb5a8037b27..38c10e161c7 100644 --- a/crypto/bn/bn_asm.c +++ b/crypto/bn/bn_asm.c @@ -63,7 +63,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #if defined(BN_LLONG) || defined(BN_UMULT_HIGH) diff --git a/crypto/bn/bn_blind.c b/crypto/bn/bn_blind.c index 52f74d1e57a..4ae6b096687 100644 --- a/crypto/bn/bn_blind.c +++ b/crypto/bn/bn_blind.c @@ -109,7 +109,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #define BN_BLINDING_COUNTER 32 diff --git a/crypto/bn/bn_ctx.c b/crypto/bn/bn_ctx.c index 481c9d2496f..c023303b678 100644 --- a/crypto/bn/bn_ctx.c +++ b/crypto/bn/bn_ctx.c @@ -62,7 +62,7 @@ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" /*- diff --git a/crypto/bn/bn_depr.c b/crypto/bn/bn_depr.c index bc15f8317e2..c4a5c820d04 100644 --- a/crypto/bn/bn_depr.c +++ b/crypto/bn/bn_depr.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #include diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c index 1dead86e909..cbf27d3e943 100644 --- a/crypto/bn/bn_div.c +++ b/crypto/bn/bn_div.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" /* The old slow way */ diff --git a/crypto/bn/bn_exp.c b/crypto/bn/bn_exp.c index 17aa2ba5bf3..6ce6f8d1687 100644 --- a/crypto/bn/bn_exp.c +++ b/crypto/bn/bn_exp.c @@ -109,7 +109,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #include diff --git a/crypto/bn/bn_exp2.c b/crypto/bn/bn_exp2.c index e36c23bc33f..517b9610234 100644 --- a/crypto/bn/bn_exp2.c +++ b/crypto/bn/bn_exp2.c @@ -110,7 +110,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #define TABLE_SIZE 32 diff --git a/crypto/bn/bn_gcd.c b/crypto/bn/bn_gcd.c index 9902e4eee9f..17c6cf5ce37 100644 --- a/crypto/bn/bn_gcd.c +++ b/crypto/bn/bn_gcd.c @@ -109,7 +109,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" static BIGNUM *euclid(BIGNUM *a, BIGNUM *b); diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c index 50d7c740852..caad2d0d0d2 100644 --- a/crypto/bn/bn_gf2m.c +++ b/crypto/bn/bn_gf2m.c @@ -92,7 +92,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #ifndef OPENSSL_NO_EC2M diff --git a/crypto/bn/bn_intern.c b/crypto/bn/bn_intern.c index c3ea5619b26..0b222517d47 100644 --- a/crypto/bn/bn_intern.c +++ b/crypto/bn/bn_intern.c @@ -52,7 +52,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" /* diff --git a/crypto/bn/bn_kron.c b/crypto/bn/bn_kron.c index 88d731ac75c..5a0eb7dfd20 100644 --- a/crypto/bn/bn_kron.c +++ b/crypto/bn/bn_kron.c @@ -53,7 +53,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" /* least significant word */ diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index fec70a5ccc8..4dabe26b10c 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -63,7 +63,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" const char BN_version[] = "Big Number" OPENSSL_VERSION_PTEXT; diff --git a/crypto/bn/bn_mod.c b/crypto/bn/bn_mod.c index e4763ff2c64..d7e4f9a627f 100644 --- a/crypto/bn/bn_mod.c +++ b/crypto/bn/bn_mod.c @@ -113,7 +113,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx) diff --git a/crypto/bn/bn_mont.c b/crypto/bn/bn_mont.c index 613a384c51d..c869101384f 100644 --- a/crypto/bn/bn_mont.c +++ b/crypto/bn/bn_mont.c @@ -116,7 +116,7 @@ * sections 3.8 and 4.2 in http://security.ece.orst.edu/koc/papers/r01rsasw.pdf */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #define MONT_WORD /* use the faster word-based algorithm */ diff --git a/crypto/bn/bn_mpi.c b/crypto/bn/bn_mpi.c index 3bd40bbd2bc..c4c0adfe619 100644 --- a/crypto/bn/bn_mpi.c +++ b/crypto/bn/bn_mpi.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" int BN_bn2mpi(const BIGNUM *a, unsigned char *d) diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c index f3b48590bc9..b601923eef8 100644 --- a/crypto/bn/bn_mul.c +++ b/crypto/bn/bn_mul.c @@ -62,7 +62,7 @@ #endif #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #if defined(OPENSSL_NO_ASM) || !defined(OPENSSL_BN_ASM_PART_WORDS) diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c index af048d3a3bf..621b1424ce3 100644 --- a/crypto/bn/bn_nist.c +++ b/crypto/bn/bn_nist.c @@ -57,7 +57,7 @@ */ #include "bn_lcl.h" -#include "cryptlib.h" +#include "internal/cryptlib.h" #define BN_NIST_192_TOP (192+BN_BITS2-1)/BN_BITS2 #define BN_NIST_224_TOP (224+BN_BITS2-1)/BN_BITS2 diff --git a/crypto/bn/bn_prime.c b/crypto/bn/bn_prime.c index ebfcd97e6c6..c83820cc250 100644 --- a/crypto/bn/bn_prime.c +++ b/crypto/bn/bn_prime.c @@ -111,7 +111,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #include diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c index 1ef5a879c2e..b0b70b5daee 100644 --- a/crypto/bn/bn_print.c +++ b/crypto/bn/bn_print.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "bn_lcl.h" diff --git a/crypto/bn/bn_rand.c b/crypto/bn/bn_rand.c index ed3c3c59112..4dd3f924a72 100644 --- a/crypto/bn/bn_rand.c +++ b/crypto/bn/bn_rand.c @@ -111,7 +111,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" #include #include diff --git a/crypto/bn/bn_recp.c b/crypto/bn/bn_recp.c index 3ab486bf59c..3dc2166c7d9 100644 --- a/crypto/bn/bn_recp.c +++ b/crypto/bn/bn_recp.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" void BN_RECP_CTX_init(BN_RECP_CTX *recp) diff --git a/crypto/bn/bn_shift.c b/crypto/bn/bn_shift.c index 9895646afaa..1b38bd861a5 100644 --- a/crypto/bn/bn_shift.c +++ b/crypto/bn/bn_shift.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" int BN_lshift1(BIGNUM *r, const BIGNUM *a) diff --git a/crypto/bn/bn_sqr.c b/crypto/bn/bn_sqr.c index aa31f6e825a..9f5a5dc2d8f 100644 --- a/crypto/bn/bn_sqr.c +++ b/crypto/bn/bn_sqr.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" /* r must not be a */ diff --git a/crypto/bn/bn_sqrt.c b/crypto/bn/bn_sqrt.c index ab691b79aa3..ec18641150a 100644 --- a/crypto/bn/bn_sqrt.c +++ b/crypto/bn/bn_sqrt.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) diff --git a/crypto/bn/bn_word.c b/crypto/bn/bn_word.c index a17e7029ba3..57f0dcd115d 100644 --- a/crypto/bn/bn_word.c +++ b/crypto/bn/bn_word.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) diff --git a/crypto/bn/vms-helper.c b/crypto/bn/vms-helper.c index b226af32a76..c5cf468da5b 100644 --- a/crypto/bn/vms-helper.c +++ b/crypto/bn/vms-helper.c @@ -54,7 +54,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "bn_lcl.h" bn_div_words_abort(int i) diff --git a/crypto/buffer/buf_str.c b/crypto/buffer/buf_str.c index ebc5ab4646c..1e8d7f6f105 100644 --- a/crypto/buffer/buf_str.c +++ b/crypto/buffer/buf_str.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include size_t BUF_strnlen(const char *str, size_t maxlen) diff --git a/crypto/buffer/buffer.c b/crypto/buffer/buffer.c index b41b8f2b371..37e5484dbd9 100644 --- a/crypto/buffer/buffer.c +++ b/crypto/buffer/buffer.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* diff --git a/crypto/cmac/cm_ameth.c b/crypto/cmac/cm_ameth.c index 07853a63d36..223631c3c03 100644 --- a/crypto/cmac/cm_ameth.c +++ b/crypto/cmac/cm_ameth.c @@ -52,7 +52,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/asn1_int.h" diff --git a/crypto/cmac/cm_pmeth.c b/crypto/cmac/cm_pmeth.c index 013ac570948..22c7dbee069 100644 --- a/crypto/cmac/cm_pmeth.c +++ b/crypto/cmac/cm_pmeth.c @@ -52,7 +52,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cmac/cmac.c b/crypto/cmac/cmac.c index e7db3206f5a..0711bffd8a7 100644 --- a/crypto/cmac/cmac.c +++ b/crypto/cmac/cmac.c @@ -55,7 +55,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include struct CMAC_CTX_st { diff --git a/crypto/cms/cms_cd.c b/crypto/cms/cms_cd.c index 8673e00646b..889133ee74d 100644 --- a/crypto/cms/cms_cd.c +++ b/crypto/cms/cms_cd.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_dd.c b/crypto/cms/cms_dd.c index 09ad319b873..d4067859a3f 100644 --- a/crypto/cms/cms_dd.c +++ b/crypto/cms/cms_dd.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_enc.c b/crypto/cms/cms_enc.c index ed20c536178..f9556acc2e6 100644 --- a/crypto/cms/cms_enc.c +++ b/crypto/cms/cms_enc.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_env.c b/crypto/cms/cms_env.c index 7fefd246e31..5c86dd99721 100644 --- a/crypto/cms/cms_env.c +++ b/crypto/cms/cms_env.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_ess.c b/crypto/cms/cms_ess.c index 9dfbd67e5f6..d75ea169e9c 100644 --- a/crypto/cms/cms_ess.c +++ b/crypto/cms/cms_ess.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_kari.c b/crypto/cms/cms_kari.c index d860f0927d0..d56dd9b84ba 100644 --- a/crypto/cms/cms_kari.c +++ b/crypto/cms/cms_kari.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_pwri.c b/crypto/cms/cms_pwri.c index 1d505e9d1c8..f722d9a9b69 100644 --- a/crypto/cms/cms_pwri.c +++ b/crypto/cms/cms_pwri.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_sd.c b/crypto/cms/cms_sd.c index 7fb4385f60a..ab574fc3342 100644 --- a/crypto/cms/cms_sd.c +++ b/crypto/cms/cms_sd.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cms/cms_smime.c b/crypto/cms/cms_smime.c index c161973d294..0d97d3e5f3f 100644 --- a/crypto/cms/cms_smime.c +++ b/crypto/cms/cms_smime.c @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c index ee71f482001..098fc8ec324 100644 --- a/crypto/conf/conf_def.c +++ b/crypto/conf/conf_def.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/conf/conf_mall.c b/crypto/conf/conf_mall.c index 8e16342e28e..5db7da076d9 100644 --- a/crypto/conf/conf_mall.c +++ b/crypto/conf/conf_mall.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/conf/conf_mod.c b/crypto/conf/conf_mod.c index b01319fd399..7fbb4ad9a4d 100644 --- a/crypto/conf/conf_mod.c +++ b/crypto/conf/conf_mod.c @@ -60,7 +60,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/conf/conf_sap.c b/crypto/conf/conf_sap.c index 544fe973871..e99a38ef63b 100644 --- a/crypto/conf/conf_sap.c +++ b/crypto/conf/conf_sap.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 69883ab929a..6d050ffa3de 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -114,7 +114,7 @@ * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #if defined(OPENSSL_SYS_WIN32) diff --git a/crypto/cversion.c b/crypto/cversion.c index bfff6995c12..6111b65b918 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_WINDOWS_BRAINDEATH # include "buildinf.h" diff --git a/crypto/des/enc_read.c b/crypto/des/enc_read.c index fcb66541bdd..e90445441a2 100644 --- a/crypto/des/enc_read.c +++ b/crypto/des/enc_read.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "des_locl.h" /* This has some uglies in it but it works - even over sockets. */ diff --git a/crypto/des/enc_writ.c b/crypto/des/enc_writ.c index 9ea7c5a503c..0fbef13fccc 100644 --- a/crypto/des/enc_writ.c +++ b/crypto/des/enc_writ.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "des_locl.h" #include diff --git a/crypto/dh/dh_ameth.c b/crypto/dh/dh_ameth.c index 065f8b9b546..98f8570a2f4 100644 --- a/crypto/dh/dh_ameth.c +++ b/crypto/dh/dh_ameth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dh/dh_asn1.c b/crypto/dh/dh_asn1.c index 7066cafce64..0c6a1deb8b7 100644 --- a/crypto/dh/dh_asn1.c +++ b/crypto/dh/dh_asn1.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dh/dh_check.c b/crypto/dh/dh_check.c index b8b3890d9e7..7521180d2b8 100644 --- a/crypto/dh/dh_check.c +++ b/crypto/dh/dh_check.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/dh/dh_depr.c b/crypto/dh/dh_depr.c index 7220d074d88..7be6041dc89 100644 --- a/crypto/dh/dh_depr.c +++ b/crypto/dh/dh_depr.c @@ -56,7 +56,7 @@ /* This file contains deprecated functions as wrappers to the new ones */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/dh/dh_gen.c b/crypto/dh/dh_gen.c index 99ccae33bf9..778f8a99c0b 100644 --- a/crypto/dh/dh_gen.c +++ b/crypto/dh/dh_gen.c @@ -62,7 +62,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/dh/dh_key.c b/crypto/dh/dh_key.c index e2f48b142d8..ff91d41d79e 100644 --- a/crypto/dh/dh_key.c +++ b/crypto/dh/dh_key.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/bn_int.h" diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index 1ae081c732c..4a37adc9f82 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #ifndef OPENSSL_NO_ENGINE diff --git a/crypto/dh/dh_pmeth.c b/crypto/dh/dh_pmeth.c index 07d74dc9298..763e42fe227 100644 --- a/crypto/dh/dh_pmeth.c +++ b/crypto/dh/dh_pmeth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dh/dh_prn.c b/crypto/dh/dh_prn.c index fef19e34708..7dc71013f35 100644 --- a/crypto/dh/dh_prn.c +++ b/crypto/dh/dh_prn.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/dh/dh_rfc5114.c b/crypto/dh/dh_rfc5114.c index 4a84ced6ec6..752bf2cd124 100644 --- a/crypto/dh/dh_rfc5114.c +++ b/crypto/dh/dh_rfc5114.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/dsa/dsa_ameth.c b/crypto/dsa/dsa_ameth.c index bc8fcc4424f..01b3497552b 100644 --- a/crypto/dsa/dsa_ameth.c +++ b/crypto/dsa/dsa_ameth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_asn1.c b/crypto/dsa/dsa_asn1.c index 0f0c515345d..bb2434e20e7 100644 --- a/crypto/dsa/dsa_asn1.c +++ b/crypto/dsa/dsa_asn1.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_depr.c b/crypto/dsa/dsa_depr.c index 10f0314f182..f14e5876468 100644 --- a/crypto/dsa/dsa_depr.c +++ b/crypto/dsa/dsa_depr.c @@ -69,7 +69,7 @@ static void *dummy = &dummy; #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_gen.c b/crypto/dsa/dsa_gen.c index 59946f6579a..e030cfa1e9d 100644 --- a/crypto/dsa/dsa_gen.c +++ b/crypto/dsa/dsa_gen.c @@ -66,7 +66,7 @@ #include /* To see if OPENSSL_NO_SHA is defined */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_key.c b/crypto/dsa/dsa_key.c index ff01deca4a6..01a83e00181 100644 --- a/crypto/dsa/dsa_key.c +++ b/crypto/dsa/dsa_key.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c index 2a193c83405..cb59e7ebb0a 100644 --- a/crypto/dsa/dsa_lib.c +++ b/crypto/dsa/dsa_lib.c @@ -59,7 +59,7 @@ /* Original version from Steven Schoch */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_ossl.c b/crypto/dsa/dsa_ossl.c index cd63211c864..19a75834fbb 100644 --- a/crypto/dsa/dsa_ossl.c +++ b/crypto/dsa/dsa_ossl.c @@ -59,7 +59,7 @@ /* Original version from Steven Schoch */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_pmeth.c b/crypto/dsa/dsa_pmeth.c index 1bb3683a926..594583ffc85 100644 --- a/crypto/dsa/dsa_pmeth.c +++ b/crypto/dsa/dsa_pmeth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_prn.c b/crypto/dsa/dsa_prn.c index 1d44650b39f..64c51fced14 100644 --- a/crypto/dsa/dsa_prn.c +++ b/crypto/dsa/dsa_prn.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/dsa/dsa_sign.c b/crypto/dsa/dsa_sign.c index 43b7a9ee6af..e7c8b0cc2ea 100644 --- a/crypto/dsa/dsa_sign.c +++ b/crypto/dsa/dsa_sign.c @@ -58,7 +58,7 @@ /* Original version from Steven Schoch */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/dsa/dsa_vrf.c b/crypto/dsa/dsa_vrf.c index c4589160cb1..9f45efa136b 100644 --- a/crypto/dsa/dsa_vrf.c +++ b/crypto/dsa/dsa_vrf.c @@ -58,7 +58,7 @@ /* Original version from Steven Schoch */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include int DSA_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig, diff --git a/crypto/dso/dso_dl.c b/crypto/dso/dso_dl.c index 5d5ede03a58..2b95f92eca8 100644 --- a/crypto/dso/dso_dl.c +++ b/crypto/dso/dso_dl.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef DSO_DL diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c index 92d951fce38..1738f3cd715 100644 --- a/crypto/dso/dso_dlfcn.c +++ b/crypto/dso/dso_dlfcn.c @@ -67,7 +67,7 @@ #endif #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef DSO_DLFCN diff --git a/crypto/dso/dso_lib.c b/crypto/dso/dso_lib.c index c555398fcae..12544b3a161 100644 --- a/crypto/dso/dso_lib.c +++ b/crypto/dso/dso_lib.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static DSO_METHOD *default_DSO_meth = NULL; diff --git a/crypto/dso/dso_null.c b/crypto/dso/dso_null.c index ab2125c2866..e27f98e49ee 100644 --- a/crypto/dso/dso_null.c +++ b/crypto/dso/dso_null.c @@ -63,7 +63,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static DSO_METHOD dso_meth_null = { diff --git a/crypto/dso/dso_openssl.c b/crypto/dso/dso_openssl.c index 27b7d559fa8..191cb6a97c0 100644 --- a/crypto/dso/dso_openssl.c +++ b/crypto/dso/dso_openssl.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* We just pinch the method from an appropriate "default" method. */ diff --git a/crypto/dso/dso_vms.c b/crypto/dso/dso_vms.c index 07ec1cd30b5..ffdc57f8242 100644 --- a/crypto/dso/dso_vms.c +++ b/crypto/dso/dso_vms.c @@ -60,7 +60,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_SYS_VMS diff --git a/crypto/dso/dso_win32.c b/crypto/dso/dso_win32.c index 81c983ccb32..2da318f7078 100644 --- a/crypto/dso/dso_win32.c +++ b/crypto/dso/dso_win32.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #if !defined(DSO_WIN32) diff --git a/crypto/ec/ec_ameth.c b/crypto/ec/ec_ameth.c index 268eff05c97..edb68d119db 100644 --- a/crypto/ec/ec_ameth.c +++ b/crypto/ec/ec_ameth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ec/ec_pmeth.c b/crypto/ec/ec_pmeth.c index 42e3d3ae0f3..5ca8ed9dfda 100644 --- a/crypto/ec/ec_pmeth.c +++ b/crypto/ec/ec_pmeth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ec/eck_prn.c b/crypto/ec/eck_prn.c index 7cdc485b2e8..f1248b8da9d 100644 --- a/crypto/ec/eck_prn.c +++ b/crypto/ec/eck_prn.c @@ -62,7 +62,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ec/ecp_nistz256.c b/crypto/ec/ecp_nistz256.c index 83f0c6fdfdc..503606085ff 100644 --- a/crypto/ec/ecp_nistz256.c +++ b/crypto/ec/ecp_nistz256.c @@ -28,7 +28,7 @@ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "internal/bn_int.h" #include "ec_lcl.h" diff --git a/crypto/ecdh/ech_ossl.c b/crypto/ecdh/ech_ossl.c index ad3482fab75..ba66bd5af2a 100644 --- a/crypto/ecdh/ech_ossl.c +++ b/crypto/ecdh/ech_ossl.c @@ -70,7 +70,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "ech_locl.h" #include diff --git a/crypto/engine/eng_all.c b/crypto/engine/eng_all.c index b7d2529596d..5ab498e350a 100644 --- a/crypto/engine/eng_all.c +++ b/crypto/engine/eng_all.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "eng_int.h" void ENGINE_load_builtin_engines(void) diff --git a/crypto/engine/eng_int.h b/crypto/engine/eng_int.h index 46f163b1f5a..42674e14fab 100644 --- a/crypto/engine/eng_int.h +++ b/crypto/engine/eng_int.h @@ -65,7 +65,7 @@ #ifndef HEADER_ENGINE_INT_H # define HEADER_ENGINE_INT_H -# include "cryptlib.h" +# include "internal/cryptlib.h" /* Take public definitions from engine.h */ # include diff --git a/crypto/engine/eng_openssl.c b/crypto/engine/eng_openssl.c index 560c9b3c932..eaf06180c9b 100644 --- a/crypto/engine/eng_openssl.c +++ b/crypto/engine/eng_openssl.c @@ -64,7 +64,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c index f0f4dbbf76a..26b92308af8 100644 --- a/crypto/engine/eng_table.c +++ b/crypto/engine/eng_table.c @@ -52,7 +52,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "eng_int.h" diff --git a/crypto/err/err.c b/crypto/err/err.c index 78e881795f7..1b94ce5a026 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -112,7 +112,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/err/err_prn.c b/crypto/err/err_prn.c index 17c0a92e509..7a74fea7e50 100644 --- a/crypto/err/err_prn.c +++ b/crypto/err/err_prn.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/bio_b64.c b/crypto/evp/bio_b64.c index 6dc3bb10ce2..dcb96956c5a 100644 --- a/crypto/evp/bio_b64.c +++ b/crypto/evp/bio_b64.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/bio_enc.c b/crypto/evp/bio_enc.c index 86a2dc5743e..bf74a0ac726 100644 --- a/crypto/evp/bio_enc.c +++ b/crypto/evp/bio_enc.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/bio_md.c b/crypto/evp/bio_md.c index f0b0c0c0a7a..6afaf9a54f5 100644 --- a/crypto/evp/bio_md.c +++ b/crypto/evp/bio_md.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/bio_ok.c b/crypto/evp/bio_ok.c index 7a38cd9e1a0..9fdf6bc27ad 100644 --- a/crypto/evp/bio_ok.c +++ b/crypto/evp/bio_ok.c @@ -120,7 +120,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/c_all.c b/crypto/evp/c_all.c index cc2f8f6a294..e56f5adcb72 100644 --- a/crypto/evp/c_all.c +++ b/crypto/evp/c_all.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_ENGINE # include diff --git a/crypto/evp/c_allc.c b/crypto/evp/c_allc.c index 0a889ef2633..ff4cffc531f 100644 --- a/crypto/evp/c_allc.c +++ b/crypto/evp/c_allc.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/c_alld.c b/crypto/evp/c_alld.c index 94039ef5fd3..e89173a858a 100644 --- a/crypto/evp/c_alld.c +++ b/crypto/evp/c_alld.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/digest.c b/crypto/evp/digest.c index c7856c6a943..1d25d97c537 100644 --- a/crypto/evp/digest.c +++ b/crypto/evp/digest.c @@ -110,7 +110,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #ifndef OPENSSL_NO_ENGINE diff --git a/crypto/evp/e_bf.c b/crypto/evp/e_bf.c index d6a017826e9..3d182930475 100644 --- a/crypto/evp/e_bf.c +++ b/crypto/evp/e_bf.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_BF # include # include "evp_locl.h" diff --git a/crypto/evp/e_cast.c b/crypto/evp/e_cast.c index 3f745485695..ee1b2fd4e01 100644 --- a/crypto/evp/e_cast.c +++ b/crypto/evp/e_cast.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_CAST # include diff --git a/crypto/evp/e_des.c b/crypto/evp/e_des.c index aae13a67569..0506973b14e 100644 --- a/crypto/evp/e_des.c +++ b/crypto/evp/e_des.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_DES # include # include diff --git a/crypto/evp/e_des3.c b/crypto/evp/e_des3.c index 3340308f154..715686350e8 100644 --- a/crypto/evp/e_des3.c +++ b/crypto/evp/e_des3.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_DES # include # include diff --git a/crypto/evp/e_dsa.c b/crypto/evp/e_dsa.c index 523993f4d91..2217e37a54f 100644 --- a/crypto/evp/e_dsa.c +++ b/crypto/evp/e_dsa.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/e_idea.c b/crypto/evp/e_idea.c index cac72b33ba9..233eec873a6 100644 --- a/crypto/evp/e_idea.c +++ b/crypto/evp/e_idea.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_IDEA # include diff --git a/crypto/evp/e_null.c b/crypto/evp/e_null.c index a5851280967..b9502ebd2f0 100644 --- a/crypto/evp/e_null.c +++ b/crypto/evp/e_null.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/e_rc2.c b/crypto/evp/e_rc2.c index 718cc8694fe..3e826fc7e0b 100644 --- a/crypto/evp/e_rc2.c +++ b/crypto/evp/e_rc2.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_RC2 diff --git a/crypto/evp/e_rc4.c b/crypto/evp/e_rc4.c index db3f219ed9b..ab84a66ca07 100644 --- a/crypto/evp/e_rc4.c +++ b/crypto/evp/e_rc4.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_RC4 diff --git a/crypto/evp/e_rc5.c b/crypto/evp/e_rc5.c index f17e99d0c5c..017a7abeb28 100644 --- a/crypto/evp/e_rc5.c +++ b/crypto/evp/e_rc5.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_RC5 diff --git a/crypto/evp/e_xcbc_d.c b/crypto/evp/e_xcbc_d.c index 3430df9e8ec..31a944e4f2b 100644 --- a/crypto/evp/e_xcbc_d.c +++ b/crypto/evp/e_xcbc_d.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_DES diff --git a/crypto/evp/encode.c b/crypto/evp/encode.c index 053c1d8f1f6..4d3c5c873ef 100644 --- a/crypto/evp/encode.c +++ b/crypto/evp/encode.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef CHARSET_EBCDIC diff --git a/crypto/evp/evp_acnf.c b/crypto/evp/evp_acnf.c index 9703116e02c..44070bc9c60 100644 --- a/crypto/evp/evp_acnf.c +++ b/crypto/evp/evp_acnf.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/evp_cnf.c b/crypto/evp/evp_cnf.c index 11ee56ae542..03f34a011d3 100644 --- a/crypto/evp/evp_cnf.c +++ b/crypto/evp/evp_cnf.c @@ -60,7 +60,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c index aea7accf6fe..125556ea6f4 100644 --- a/crypto/evp/evp_enc.c +++ b/crypto/evp/evp_enc.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/evp_key.c b/crypto/evp/evp_key.c index 71fa627b20d..9c34a034418 100644 --- a/crypto/evp/evp_key.c +++ b/crypto/evp/evp_key.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/evp_lib.c b/crypto/evp/evp_lib.c index 8d000298626..1fdde9ae4de 100644 --- a/crypto/evp/evp_lib.c +++ b/crypto/evp/evp_lib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/evp_pbe.c b/crypto/evp/evp_pbe.c index 63b3ad18526..e4ad16b2925 100644 --- a/crypto/evp/evp_pbe.c +++ b/crypto/evp/evp_pbe.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/evp_pkey.c b/crypto/evp/evp_pkey.c index e987c4c9add..e0c689f1584 100644 --- a/crypto/evp/evp_pkey.c +++ b/crypto/evp/evp_pkey.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/asn1_int.h" diff --git a/crypto/evp/m_dss1.c b/crypto/evp/m_dss1.c index 41b837cd773..77a10cf7994 100644 --- a/crypto/evp/m_dss1.c +++ b/crypto/evp/m_dss1.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/m_ecdsa.c b/crypto/evp/m_ecdsa.c index 181f19f7446..745752dd7cc 100644 --- a/crypto/evp/m_ecdsa.c +++ b/crypto/evp/m_ecdsa.c @@ -110,7 +110,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/m_md2.c b/crypto/evp/m_md2.c index 3c4cd7bf88d..91b5e18d109 100644 --- a/crypto/evp/m_md2.c +++ b/crypto/evp/m_md2.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_MD2 diff --git a/crypto/evp/m_md4.c b/crypto/evp/m_md4.c index 440b5fa7761..2ef3023d166 100644 --- a/crypto/evp/m_md4.c +++ b/crypto/evp/m_md4.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_MD4 diff --git a/crypto/evp/m_md5.c b/crypto/evp/m_md5.c index 784425a9d0d..cd021f55f46 100644 --- a/crypto/evp/m_md5.c +++ b/crypto/evp/m_md5.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_MD5 diff --git a/crypto/evp/m_mdc2.c b/crypto/evp/m_mdc2.c index 2081d719aa8..272d9cb2e5e 100644 --- a/crypto/evp/m_mdc2.c +++ b/crypto/evp/m_mdc2.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_MDC2 diff --git a/crypto/evp/m_null.c b/crypto/evp/m_null.c index 017e1feb0be..7374e697ab4 100644 --- a/crypto/evp/m_null.c +++ b/crypto/evp/m_null.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/m_ripemd.c b/crypto/evp/m_ripemd.c index fa9be8ee5ee..30046c886fa 100644 --- a/crypto/evp/m_ripemd.c +++ b/crypto/evp/m_ripemd.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_RMD160 diff --git a/crypto/evp/m_sha1.c b/crypto/evp/m_sha1.c index 9ab8c9093ea..7deed91dff0 100644 --- a/crypto/evp/m_sha1.c +++ b/crypto/evp/m_sha1.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/m_sigver.c b/crypto/evp/m_sigver.c index 288c563d99a..258fd91ced2 100644 --- a/crypto/evp/m_sigver.c +++ b/crypto/evp/m_sigver.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/m_wp.c b/crypto/evp/m_wp.c index b867ebda9ac..76258b66174 100644 --- a/crypto/evp/m_wp.c +++ b/crypto/evp/m_wp.c @@ -1,7 +1,7 @@ /* crypto/evp/m_wp.c */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_WHIRLPOOL diff --git a/crypto/evp/names.c b/crypto/evp/names.c index b8a4410d588..c7c4615c804 100644 --- a/crypto/evp/names.c +++ b/crypto/evp/names.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/p5_crpt.c b/crypto/evp/p5_crpt.c index 921006caeb7..2d37d08f98b 100644 --- a/crypto/evp/p5_crpt.c +++ b/crypto/evp/p5_crpt.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/evp/p5_crpt2.c b/crypto/evp/p5_crpt2.c index ca3fa9cdea2..4986a21361c 100644 --- a/crypto/evp/p5_crpt2.c +++ b/crypto/evp/p5_crpt2.c @@ -58,7 +58,7 @@ */ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" # include # include # include diff --git a/crypto/evp/p_dec.c b/crypto/evp/p_dec.c index 225b8b45ed5..f232934b93a 100644 --- a/crypto/evp/p_dec.c +++ b/crypto/evp/p_dec.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_RSA # include diff --git a/crypto/evp/p_enc.c b/crypto/evp/p_enc.c index f565f33fbf0..d4ab14b3543 100644 --- a/crypto/evp/p_enc.c +++ b/crypto/evp/p_enc.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_RSA # include diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c index 42ae5ae0695..daa3d57c027 100644 --- a/crypto/evp/p_lib.c +++ b/crypto/evp/p_lib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/p_open.c b/crypto/evp/p_open.c index 481c85518a6..02f61065c24 100644 --- a/crypto/evp/p_open.c +++ b/crypto/evp/p_open.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_RSA diff --git a/crypto/evp/p_seal.c b/crypto/evp/p_seal.c index ba9dfff2157..ff60bb53482 100644 --- a/crypto/evp/p_seal.c +++ b/crypto/evp/p_seal.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_RSA # include diff --git a/crypto/evp/p_sign.c b/crypto/evp/p_sign.c index 07ae2524f69..90a5fc6a42d 100644 --- a/crypto/evp/p_sign.c +++ b/crypto/evp/p_sign.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/p_verify.c b/crypto/evp/p_verify.c index 2277a91b9dd..098bf9149ce 100644 --- a/crypto/evp/p_verify.c +++ b/crypto/evp/p_verify.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/evp/pmeth_fn.c b/crypto/evp/pmeth_fn.c index abf216082d9..d86110b4e77 100644 --- a/crypto/evp/pmeth_fn.c +++ b/crypto/evp/pmeth_fn.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/evp_int.h" diff --git a/crypto/evp/pmeth_gn.c b/crypto/evp/pmeth_gn.c index 78467c98f7b..705801fc025 100644 --- a/crypto/evp/pmeth_gn.c +++ b/crypto/evp/pmeth_gn.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/bn_int.h" diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c index fef0b8f260f..210c7fa9884 100644 --- a/crypto/evp/pmeth_lib.c +++ b/crypto/evp/pmeth_lib.c @@ -59,7 +59,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #ifndef OPENSSL_NO_ENGINE diff --git a/crypto/ex_data.c b/crypto/ex_data.c index 20a2dd73244..bf5cf29173b 100644 --- a/crypto/ex_data.c +++ b/crypto/ex_data.c @@ -138,7 +138,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* What an "implementation of ex_data functionality" looks like */ diff --git a/crypto/hmac/hm_ameth.c b/crypto/hmac/hm_ameth.c index 1b0f3b97c56..cd29c0ccd8a 100644 --- a/crypto/hmac/hm_ameth.c +++ b/crypto/hmac/hm_ameth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "internal/asn1_int.h" diff --git a/crypto/hmac/hm_pmeth.c b/crypto/hmac/hm_pmeth.c index 2980254402e..fcccb58d233 100644 --- a/crypto/hmac/hm_pmeth.c +++ b/crypto/hmac/hm_pmeth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/hmac/hmac.c b/crypto/hmac/hmac.c index 6362aa850f0..572393e2c70 100644 --- a/crypto/hmac/hmac.c +++ b/crypto/hmac/hmac.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, diff --git a/crypto/cryptlib.h b/crypto/include/internal/cryptlib.h similarity index 100% rename from crypto/cryptlib.h rename to crypto/include/internal/cryptlib.h diff --git a/crypto/md32_common.h b/crypto/include/internal/md32_common.h similarity index 100% rename from crypto/md32_common.h rename to crypto/include/internal/md32_common.h diff --git a/crypto/lhash/lh_stats.c b/crypto/lhash/lh_stats.c index 0a213991d8a..09e1bff4904 100644 --- a/crypto/lhash/lh_stats.c +++ b/crypto/lhash/lh_stats.c @@ -63,7 +63,7 @@ * If you wish to build this outside of SSLeay, remove the following lines * and things should work as expected */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/lock.c b/crypto/lock.c index cad98764f6e..d7d672d70d3 100644 --- a/crypto/lock.c +++ b/crypto/lock.c @@ -114,7 +114,7 @@ * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #if defined(OPENSSL_SYS_WIN32) diff --git a/crypto/md2/md2_one.c b/crypto/md2/md2_one.c index cd2631b2611..ff648b5b98f 100644 --- a/crypto/md2/md2_one.c +++ b/crypto/md2/md2_one.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* diff --git a/crypto/md4/md4_locl.h b/crypto/md4/md4_locl.h index 6ed21e13da1..c6dd348545b 100644 --- a/crypto/md4/md4_locl.h +++ b/crypto/md4/md4_locl.h @@ -80,7 +80,7 @@ void md4_block_data_order(MD4_CTX *c, const void *p, size_t num); } while (0) #define HASH_BLOCK_DATA_ORDER md4_block_data_order -#include "md32_common.h" +#include "internal/md32_common.h" /*- #define F(x,y,z) (((x) & (y)) | ((~(x)) & (z))) diff --git a/crypto/md5/md5_locl.h b/crypto/md5/md5_locl.h index 6c1bf35b804..22ae9b3e348 100644 --- a/crypto/md5/md5_locl.h +++ b/crypto/md5/md5_locl.h @@ -91,7 +91,7 @@ void md5_block_data_order(MD5_CTX *c, const void *p, size_t num); } while (0) #define HASH_BLOCK_DATA_ORDER md5_block_data_order -#include "md32_common.h" +#include "internal/md32_common.h" /*- #define F(x,y,z) (((x) & (y)) | ((~(x)) & (z))) diff --git a/crypto/mdc2/mdc2_one.c b/crypto/mdc2/mdc2_one.c index 790775c6fe8..d30305b3536 100644 --- a/crypto/mdc2/mdc2_one.c +++ b/crypto/mdc2/mdc2_one.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md) diff --git a/crypto/mem.c b/crypto/mem.c index 14f67a443fd..b98e44fc5aa 100644 --- a/crypto/mem.c +++ b/crypto/mem.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" static int allow_customize = 1; /* we provide flexible functions for */ static int allow_customize_debug = 1; /* exchanging memory-related functions diff --git a/crypto/mem_dbg.c b/crypto/mem_dbg.c index 98c17dda19e..10cc8931e77 100644 --- a/crypto/mem_dbg.c +++ b/crypto/mem_dbg.c @@ -112,7 +112,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/modes/wrap128.c b/crypto/modes/wrap128.c index fe33a986bed..a3f397edbec 100644 --- a/crypto/modes/wrap128.c +++ b/crypto/modes/wrap128.c @@ -59,7 +59,7 @@ * allows you to use them for any 128 bit block cipher. */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /** RFC 3394 section 2.2.3.1 Default Initial Value */ diff --git a/crypto/o_fips.c b/crypto/o_fips.c index 105d5faf483..11391485599 100644 --- a/crypto/o_fips.c +++ b/crypto/o_fips.c @@ -56,7 +56,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifdef OPENSSL_FIPS # include #endif diff --git a/crypto/objects/obj_dat.c b/crypto/objects/obj_dat.c index 6a068eef436..27d61b3a43a 100644 --- a/crypto/objects/obj_dat.c +++ b/crypto/objects/obj_dat.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/objects/obj_lib.c b/crypto/objects/obj_lib.c index 58e9a92fe40..d3c2ed046ab 100644 --- a/crypto/objects/obj_lib.c +++ b/crypto/objects/obj_lib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ocsp/ocsp_cl.c b/crypto/ocsp/ocsp_cl.c index b6ec19a565b..ef8ff30031e 100644 --- a/crypto/ocsp/ocsp_cl.c +++ b/crypto/ocsp/ocsp_cl.c @@ -66,7 +66,7 @@ #include #include -#include +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ocsp/ocsp_ext.c b/crypto/ocsp/ocsp_ext.c index 63a8332c151..95c61e66e52 100644 --- a/crypto/ocsp/ocsp_ext.c +++ b/crypto/ocsp/ocsp_ext.c @@ -65,7 +65,7 @@ */ #include -#include +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ocsp/ocsp_lib.c b/crypto/ocsp/ocsp_lib.c index b0e7122796c..aa0723c9abf 100644 --- a/crypto/ocsp/ocsp_lib.c +++ b/crypto/ocsp/ocsp_lib.c @@ -65,7 +65,7 @@ */ #include -#include +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ocsp/ocsp_srv.c b/crypto/ocsp/ocsp_srv.c index 3b71dd7e85c..740b11c5a0d 100644 --- a/crypto/ocsp/ocsp_srv.c +++ b/crypto/ocsp/ocsp_srv.c @@ -58,7 +58,7 @@ */ #include -#include +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ocsp/v3_ocsp.c b/crypto/ocsp/v3_ocsp.c index 7e502d79625..30ed7d5d316 100644 --- a/crypto/ocsp/v3_ocsp.c +++ b/crypto/ocsp/v3_ocsp.c @@ -58,7 +58,7 @@ */ # include -# include "cryptlib.h" +# include "internal/cryptlib.h" # include # include # include diff --git a/crypto/pem/pem_all.c b/crypto/pem/pem_all.c index 8ef8f18c42c..2f36c25ba3c 100644 --- a/crypto/pem/pem_all.c +++ b/crypto/pem/pem_all.c @@ -110,7 +110,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_info.c b/crypto/pem/pem_info.c index 29670ed35f8..045f568e0c7 100644 --- a/crypto/pem/pem_info.c +++ b/crypto/pem/pem_info.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_lib.c b/crypto/pem/pem_lib.c index 088288d0d4d..47be6406ae5 100644 --- a/crypto/pem/pem_lib.c +++ b/crypto/pem/pem_lib.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_oth.c b/crypto/pem/pem_oth.c index 1dd3bd7a1b9..63f42b29fa1 100644 --- a/crypto/pem/pem_oth.c +++ b/crypto/pem/pem_oth.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_pk8.c b/crypto/pem/pem_pk8.c index 52b40fe5ea0..4534eb1ec4a 100644 --- a/crypto/pem/pem_pk8.c +++ b/crypto/pem/pem_pk8.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_pkey.c b/crypto/pem/pem_pkey.c index a7dd27f061f..893675fc400 100644 --- a/crypto/pem/pem_pkey.c +++ b/crypto/pem/pem_pkey.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_seal.c b/crypto/pem/pem_seal.c index a3812b80d2d..e8ea1b0a131 100644 --- a/crypto/pem/pem_seal.c +++ b/crypto/pem/pem_seal.c @@ -59,7 +59,7 @@ #include /* for OPENSSL_NO_RSA */ #ifndef OPENSSL_NO_RSA # include -# include "cryptlib.h" +# include "internal/cryptlib.h" # include # include # include diff --git a/crypto/pem/pem_sign.c b/crypto/pem/pem_sign.c index e16be4a2649..824ff480e53 100644 --- a/crypto/pem/pem_sign.c +++ b/crypto/pem/pem_sign.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_x509.c b/crypto/pem/pem_x509.c index 3c20ff28ade..9dbd6932792 100644 --- a/crypto/pem/pem_x509.c +++ b/crypto/pem/pem_x509.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pem_xaux.c b/crypto/pem/pem_xaux.c index 3263bd61c51..6f37416ae79 100644 --- a/crypto/pem/pem_xaux.c +++ b/crypto/pem/pem_xaux.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pem/pvkfmt.c b/crypto/pem/pvkfmt.c index 0900ef603b5..c682fc793c9 100644 --- a/crypto/pem/pvkfmt.c +++ b/crypto/pem/pvkfmt.c @@ -61,7 +61,7 @@ * and PRIVATEKEYBLOB). */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pkcs12/p12_add.c b/crypto/pkcs12/p12_add.c index 301fed65f97..29abe2e1a4b 100644 --- a/crypto/pkcs12/p12_add.c +++ b/crypto/pkcs12/p12_add.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* Pack an object into an OCTET STRING and turn into a safebag */ diff --git a/crypto/pkcs12/p12_asn.c b/crypto/pkcs12/p12_asn.c index 370ddbd6e77..ef2e851a6f4 100644 --- a/crypto/pkcs12/p12_asn.c +++ b/crypto/pkcs12/p12_asn.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/pkcs12/p12_attr.c b/crypto/pkcs12/p12_attr.c index 365a1cdff6e..80abf66d414 100644 --- a/crypto/pkcs12/p12_attr.c +++ b/crypto/pkcs12/p12_attr.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* Add a local keyid to a safebag */ diff --git a/crypto/pkcs12/p12_crpt.c b/crypto/pkcs12/p12_crpt.c index e50096befdd..08be40c61ff 100644 --- a/crypto/pkcs12/p12_crpt.c +++ b/crypto/pkcs12/p12_crpt.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* PKCS#12 PBE algorithms now in static table */ diff --git a/crypto/pkcs12/p12_crt.c b/crypto/pkcs12/p12_crt.c index cc254109dad..189e7c7559e 100644 --- a/crypto/pkcs12/p12_crt.c +++ b/crypto/pkcs12/p12_crt.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int pkcs12_add_bag(STACK_OF(PKCS12_SAFEBAG) **pbags, diff --git a/crypto/pkcs12/p12_decr.c b/crypto/pkcs12/p12_decr.c index 5154e545fec..f19830cf730 100644 --- a/crypto/pkcs12/p12_decr.c +++ b/crypto/pkcs12/p12_decr.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* Define this to dump decrypted output to files called DERnnn */ diff --git a/crypto/pkcs12/p12_init.c b/crypto/pkcs12/p12_init.c index 29f98316bf8..3f1a07c000e 100644 --- a/crypto/pkcs12/p12_init.c +++ b/crypto/pkcs12/p12_init.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* Initialise a PKCS12 structure to take data */ diff --git a/crypto/pkcs12/p12_key.c b/crypto/pkcs12/p12_key.c index 45cac04ac6e..879f157be0c 100644 --- a/crypto/pkcs12/p12_key.c +++ b/crypto/pkcs12/p12_key.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/pkcs12/p12_kiss.c b/crypto/pkcs12/p12_kiss.c index a2dbc42eab6..a70fe72d093 100644 --- a/crypto/pkcs12/p12_kiss.c +++ b/crypto/pkcs12/p12_kiss.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* Simplified PKCS#12 routines */ diff --git a/crypto/pkcs12/p12_mutl.c b/crypto/pkcs12/p12_mutl.c index b193da1b3d0..4025e3fc418 100644 --- a/crypto/pkcs12/p12_mutl.c +++ b/crypto/pkcs12/p12_mutl.c @@ -58,7 +58,7 @@ */ # include -# include "cryptlib.h" +# include "internal/cryptlib.h" # include # include # include diff --git a/crypto/pkcs12/p12_p8d.c b/crypto/pkcs12/p12_p8d.c index 3cc7a9f40e9..983eadf43e1 100644 --- a/crypto/pkcs12/p12_p8d.c +++ b/crypto/pkcs12/p12_p8d.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(X509_SIG *p8, const char *pass, diff --git a/crypto/pkcs12/p12_p8e.c b/crypto/pkcs12/p12_p8e.c index 9375cbfc563..46ed78a12fe 100644 --- a/crypto/pkcs12/p12_p8e.c +++ b/crypto/pkcs12/p12_p8e.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include X509_SIG *PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher, diff --git a/crypto/pkcs12/p12_utl.c b/crypto/pkcs12/p12_utl.c index c55a4f18c94..5656cdc20a8 100644 --- a/crypto/pkcs12/p12_utl.c +++ b/crypto/pkcs12/p12_utl.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include /* Cheap and nasty Unicode stuff */ diff --git a/crypto/pkcs7/pk7_asn1.c b/crypto/pkcs7/pk7_asn1.c index 9c0a43981ea..bc107ccf426 100644 --- a/crypto/pkcs7/pk7_asn1.c +++ b/crypto/pkcs7/pk7_asn1.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pkcs7/pk7_dgst.c b/crypto/pkcs7/pk7_dgst.c index 6b57f97abae..cb2b2936d7b 100644 --- a/crypto/pkcs7/pk7_dgst.c +++ b/crypto/pkcs7/pk7_dgst.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pkcs7/pk7_doit.c b/crypto/pkcs7/pk7_doit.c index bdbde211509..2c8dd871363 100644 --- a/crypto/pkcs7/pk7_doit.c +++ b/crypto/pkcs7/pk7_doit.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pkcs7/pk7_enc.c b/crypto/pkcs7/pk7_enc.c index 6983e014cd0..10f59c4fa05 100644 --- a/crypto/pkcs7/pk7_enc.c +++ b/crypto/pkcs7/pk7_enc.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pkcs7/pk7_lib.c b/crypto/pkcs7/pk7_lib.c index 30cc98fbe5d..5d321f8836f 100644 --- a/crypto/pkcs7/pk7_lib.c +++ b/crypto/pkcs7/pk7_lib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/asn1_int.h" diff --git a/crypto/pkcs7/pk7_mime.c b/crypto/pkcs7/pk7_mime.c index 62fb2997eed..7d8b8e75135 100644 --- a/crypto/pkcs7/pk7_mime.c +++ b/crypto/pkcs7/pk7_mime.c @@ -55,7 +55,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/pkcs7/pk7_smime.c b/crypto/pkcs7/pk7_smime.c index edc5969d34d..e52e74679a1 100644 --- a/crypto/pkcs7/pk7_smime.c +++ b/crypto/pkcs7/pk7_smime.c @@ -60,7 +60,7 @@ /* Simple PKCS#7 processing functions */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/pqueue/pqueue.c b/crypto/pqueue/pqueue.c index 1378abc58a4..d10088e1f9a 100644 --- a/crypto/pqueue/pqueue.c +++ b/crypto/pqueue/pqueue.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/rand/rand_lib.c b/crypto/rand/rand_lib.c index acc116b9a7a..102ed05f693 100644 --- a/crypto/rand/rand_lib.c +++ b/crypto/rand/rand_lib.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_ENGINE diff --git a/crypto/rand/rand_nw.c b/crypto/rand/rand_nw.c index 76ef70c7739..e4c04147211 100644 --- a/crypto/rand/rand_nw.c +++ b/crypto/rand/rand_nw.c @@ -109,7 +109,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "rand_lcl.h" diff --git a/crypto/rand/rand_os2.c b/crypto/rand/rand_os2.c index 706ab1e8172..0397d77c632 100644 --- a/crypto/rand/rand_os2.c +++ b/crypto/rand/rand_os2.c @@ -53,7 +53,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "rand_lcl.h" diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c index 4332270004c..72f8617f7b3 100644 --- a/crypto/rand/rand_unix.c +++ b/crypto/rand/rand_unix.c @@ -112,7 +112,7 @@ #define USE_SOCKETS #include "e_os.h" -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "rand_lcl.h" diff --git a/crypto/rand/rand_win.c b/crypto/rand/rand_win.c index 1de39bb2ec5..e926429e7f8 100644 --- a/crypto/rand/rand_win.c +++ b/crypto/rand/rand_win.c @@ -109,7 +109,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "rand_lcl.h" diff --git a/crypto/rc4/rc4_locl.h b/crypto/rc4/rc4_locl.h index faf8742f010..2f09b7c8b3d 100644 --- a/crypto/rc4/rc4_locl.h +++ b/crypto/rc4/rc4_locl.h @@ -1,5 +1,5 @@ #ifndef HEADER_RC4_LOCL_H # define HEADER_RC4_LOCL_H # include -# include +# include "internal/cryptlib.h" #endif diff --git a/crypto/ripemd/rmd_locl.h b/crypto/ripemd/rmd_locl.h index 5a2eed386c3..d7e5c573063 100644 --- a/crypto/ripemd/rmd_locl.h +++ b/crypto/ripemd/rmd_locl.h @@ -92,7 +92,7 @@ void ripemd160_block_data_order(RIPEMD160_CTX *c, const void *p, size_t num); } while (0) #define HASH_BLOCK_DATA_ORDER ripemd160_block_data_order -#include "md32_common.h" +#include "internal/md32_common.h" /* * Transformed F2 and F4 are courtesy of Wei Dai diff --git a/crypto/rsa/rsa_ameth.c b/crypto/rsa/rsa_ameth.c index 509f203a09e..d409631e14f 100644 --- a/crypto/rsa/rsa_ameth.c +++ b/crypto/rsa/rsa_ameth.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_asn1.c b/crypto/rsa/rsa_asn1.c index aff8b583fa7..0cf1b2ab949 100644 --- a/crypto/rsa/rsa_asn1.c +++ b/crypto/rsa/rsa_asn1.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_crpt.c b/crypto/rsa/rsa_crpt.c index f5f29e0e28f..5220b7d068f 100644 --- a/crypto/rsa/rsa_crpt.c +++ b/crypto/rsa/rsa_crpt.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "internal/bn_int.h" #include diff --git a/crypto/rsa/rsa_depr.c b/crypto/rsa/rsa_depr.c index 042b2b72d5e..b76781b4ebf 100644 --- a/crypto/rsa/rsa_depr.c +++ b/crypto/rsa/rsa_depr.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/rsa/rsa_eay.c b/crypto/rsa/rsa_eay.c index 5b8e21b7a53..511ecb8c977 100644 --- a/crypto/rsa/rsa_eay.c +++ b/crypto/rsa/rsa_eay.c @@ -109,7 +109,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include "internal/bn_int.h" #include #include diff --git a/crypto/rsa/rsa_gen.c b/crypto/rsa/rsa_gen.c index ec2e18ee3c7..e81be75e44e 100644 --- a/crypto/rsa/rsa_gen.c +++ b/crypto/rsa/rsa_gen.c @@ -64,7 +64,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/rsa/rsa_lib.c b/crypto/rsa/rsa_lib.c index f4aaa298ba6..2ec39e7e218 100644 --- a/crypto/rsa/rsa_lib.c +++ b/crypto/rsa/rsa_lib.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include "internal/bn_int.h" #include diff --git a/crypto/rsa/rsa_none.c b/crypto/rsa/rsa_none.c index 83e5660742e..9f954b4a8f3 100644 --- a/crypto/rsa/rsa_none.c +++ b/crypto/rsa/rsa_none.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_null.c b/crypto/rsa/rsa_null.c index 535660a7de4..ecb2f7cc059 100644 --- a/crypto/rsa/rsa_null.c +++ b/crypto/rsa/rsa_null.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_oaep.c b/crypto/rsa/rsa_oaep.c index 6edfb4145d8..ff551f220c0 100644 --- a/crypto/rsa/rsa_oaep.c +++ b/crypto/rsa/rsa_oaep.c @@ -20,7 +20,7 @@ #include "internal/constant_time_locl.h" #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_pk1.c b/crypto/rsa/rsa_pk1.c index e32a1d5f8f1..9a8145b8cea 100644 --- a/crypto/rsa/rsa_pk1.c +++ b/crypto/rsa/rsa_pk1.c @@ -59,7 +59,7 @@ #include "internal/constant_time_locl.h" #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_pmeth.c b/crypto/rsa/rsa_pmeth.c index 76d5c6914d9..ac83de3683c 100644 --- a/crypto/rsa/rsa_pmeth.c +++ b/crypto/rsa/rsa_pmeth.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_prn.c b/crypto/rsa/rsa_prn.c index 577f855b36e..3d8c800e025 100644 --- a/crypto/rsa/rsa_prn.c +++ b/crypto/rsa/rsa_prn.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/rsa/rsa_pss.c b/crypto/rsa/rsa_pss.c index b5055dee98c..03d900c3206 100644 --- a/crypto/rsa/rsa_pss.c +++ b/crypto/rsa/rsa_pss.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_saos.c b/crypto/rsa/rsa_saos.c index c462ae155db..6c5f42d52fd 100644 --- a/crypto/rsa/rsa_saos.c +++ b/crypto/rsa/rsa_saos.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_sign.c b/crypto/rsa/rsa_sign.c index 69657978eb4..ff70cd9464e 100644 --- a/crypto/rsa/rsa_sign.c +++ b/crypto/rsa/rsa_sign.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_ssl.c b/crypto/rsa/rsa_ssl.c index 746e01f64a9..86b40ad98ac 100644 --- a/crypto/rsa/rsa_ssl.c +++ b/crypto/rsa/rsa_ssl.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/rsa/rsa_x931.c b/crypto/rsa/rsa_x931.c index 725ead049c8..54d925bf437 100644 --- a/crypto/rsa/rsa_x931.c +++ b/crypto/rsa/rsa_x931.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/sha/sha256.c b/crypto/sha/sha256.c index eec0cadf985..c112b04e7d2 100644 --- a/crypto/sha/sha256.c +++ b/crypto/sha/sha256.c @@ -127,7 +127,7 @@ static #endif void sha256_block_data_order(SHA256_CTX *ctx, const void *in, size_t num); -#include "md32_common.h" +#include "internal/md32_common.h" #ifndef SHA256_ASM static const SHA_LONG K256[64] = { diff --git a/crypto/sha/sha512.c b/crypto/sha/sha512.c index c58cc1b44b6..ebae411f137 100644 --- a/crypto/sha/sha512.c +++ b/crypto/sha/sha512.c @@ -47,7 +47,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" const char SHA512_version[] = "SHA-512" OPENSSL_VERSION_PTEXT; diff --git a/crypto/sha/sha_locl.h b/crypto/sha/sha_locl.h index af62d9e2900..d3c6c37b438 100644 --- a/crypto/sha/sha_locl.h +++ b/crypto/sha/sha_locl.h @@ -91,7 +91,7 @@ static void sha1_block_data_order(SHA_CTX *c, const void *p, size_t num); void sha1_block_data_order(SHA_CTX *c, const void *p, size_t num); #endif -#include "md32_common.h" +#include "internal/md32_common.h" #define INIT_DATA_h0 0x67452301UL #define INIT_DATA_h1 0xefcdab89UL diff --git a/crypto/srp/srp_lib.c b/crypto/srp/srp_lib.c index 1b263199f1b..893047349a6 100644 --- a/crypto/srp/srp_lib.c +++ b/crypto/srp/srp_lib.c @@ -58,7 +58,7 @@ * */ #ifndef OPENSSL_NO_SRP -# include "cryptlib.h" +# include "internal/cryptlib.h" # include # include # include diff --git a/crypto/srp/srp_vfy.c b/crypto/srp/srp_vfy.c index 79db92a290a..39c89e8d888 100644 --- a/crypto/srp/srp_vfy.c +++ b/crypto/srp/srp_vfy.c @@ -58,7 +58,7 @@ * */ #ifndef OPENSSL_NO_SRP -# include "cryptlib.h" +# include "internal/cryptlib.h" # include # include # include diff --git a/crypto/stack/stack.c b/crypto/stack/stack.c index c395d58230a..a6182df3802 100644 --- a/crypto/stack/stack.c +++ b/crypto/stack/stack.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/thr_id.c b/crypto/thr_id.c index 2be0a546d91..c391fc4ac3c 100644 --- a/crypto/thr_id.c +++ b/crypto/thr_id.c @@ -114,7 +114,7 @@ * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef OPENSSL_NO_DEPRECATED static unsigned long (*id_callback) (void) = 0; diff --git a/crypto/ts/ts_conf.c b/crypto/ts/ts_conf.c index 121b60ba181..1e511bee750 100644 --- a/crypto/ts/ts_conf.c +++ b/crypto/ts/ts_conf.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #ifndef OPENSSL_NO_ENGINE # include diff --git a/crypto/ts/ts_lib.c b/crypto/ts/ts_lib.c index cac9aa4a537..2bf7c505f6a 100644 --- a/crypto/ts/ts_lib.c +++ b/crypto/ts/ts_lib.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ts/ts_req_print.c b/crypto/ts/ts_req_print.c index 31940eef502..eef1b8aab11 100644 --- a/crypto/ts/ts_req_print.c +++ b/crypto/ts/ts_req_print.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ts/ts_req_utils.c b/crypto/ts/ts_req_utils.c index 362e5e589a9..7f3a4a42890 100644 --- a/crypto/ts/ts_req_utils.c +++ b/crypto/ts/ts_req_utils.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ts/ts_rsp_print.c b/crypto/ts/ts_rsp_print.c index 0a3e4973c81..108cd2fe02e 100644 --- a/crypto/ts/ts_rsp_print.c +++ b/crypto/ts/ts_rsp_print.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ts/ts_rsp_sign.c b/crypto/ts/ts_rsp_sign.c index b16cf91d961..c28d936dfe0 100644 --- a/crypto/ts/ts_rsp_sign.c +++ b/crypto/ts/ts_rsp_sign.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #if defined(OPENSSL_SYS_UNIX) # include diff --git a/crypto/ts/ts_rsp_utils.c b/crypto/ts/ts_rsp_utils.c index 72d9f637717..8c66c5fe0d6 100644 --- a/crypto/ts/ts_rsp_utils.c +++ b/crypto/ts/ts_rsp_utils.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ts/ts_rsp_verify.c b/crypto/ts/ts_rsp_verify.c index 939c65f8f03..116e116997b 100644 --- a/crypto/ts/ts_rsp_verify.c +++ b/crypto/ts/ts_rsp_verify.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ts/ts_verify_ctx.c b/crypto/ts/ts_verify_ctx.c index 3c15e669541..7465e048c5b 100644 --- a/crypto/ts/ts_verify_ctx.c +++ b/crypto/ts/ts_verify_ctx.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/txt_db/txt_db.c b/crypto/txt_db/txt_db.c index 5134855362d..23849175e59 100644 --- a/crypto/txt_db/txt_db.c +++ b/crypto/txt_db/txt_db.c @@ -59,7 +59,7 @@ #include #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c index e090b88b2e3..9ba844eacb0 100644 --- a/crypto/ui/ui_lib.c +++ b/crypto/ui/ui_lib.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c index 06963416327..de17638f934 100644 --- a/crypto/ui/ui_openssl.c +++ b/crypto/ui/ui_openssl.c @@ -160,7 +160,7 @@ /* 06-Apr-92 Luke Brennan Support for VMS */ #include "ui_locl.h" -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifdef OPENSSL_SYS_VMS /* prototypes for sys$whatever */ # include diff --git a/crypto/x509/by_dir.c b/crypto/x509/by_dir.c index 1be530934fa..ffd101c00f9 100644 --- a/crypto/x509/by_dir.c +++ b/crypto/x509/by_dir.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #ifndef NO_SYS_TYPES_H # include diff --git a/crypto/x509/by_file.c b/crypto/x509/by_file.c index d82a0dbd0ff..9b06b344fad 100644 --- a/crypto/x509/by_file.c +++ b/crypto/x509/by_file.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_att.c b/crypto/x509/x509_att.c index 67f6b8f3cc5..a102435f107 100644 --- a/crypto/x509/x509_att.c +++ b/crypto/x509/x509_att.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_cmp.c b/crypto/x509/x509_cmp.c index c7b0fe1e295..93082495700 100644 --- a/crypto/x509/x509_cmp.c +++ b/crypto/x509/x509_cmp.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_d2.c b/crypto/x509/x509_d2.c index 50ca2a6d182..29bbf50a2c5 100644 --- a/crypto/x509/x509_d2.c +++ b/crypto/x509/x509_d2.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509/x509_def.c b/crypto/x509/x509_def.c index 25c55375562..062b915e6b0 100644 --- a/crypto/x509/x509_def.c +++ b/crypto/x509/x509_def.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509/x509_ext.c b/crypto/x509/x509_ext.c index c5a3ad99298..6bba5bbe7f1 100644 --- a/crypto/x509/x509_ext.c +++ b/crypto/x509/x509_ext.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_lu.c b/crypto/x509/x509_lu.c index 5017f02290c..20862253e6c 100644 --- a/crypto/x509/x509_lu.c +++ b/crypto/x509/x509_lu.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_obj.c b/crypto/x509/x509_obj.c index ca6ff5dd5cc..93032d1cbce 100644 --- a/crypto/x509/x509_obj.c +++ b/crypto/x509/x509_obj.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_r2x.c b/crypto/x509/x509_r2x.c index e7159048103..d9c3cfd42b5 100644 --- a/crypto/x509/x509_r2x.c +++ b/crypto/x509/x509_r2x.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_req.c b/crypto/x509/x509_req.c index e01fc79d6ec..b6c46980a03 100644 --- a/crypto/x509/x509_req.c +++ b/crypto/x509/x509_req.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_set.c b/crypto/x509/x509_set.c index 6ddbabf62a2..486e90acea4 100644 --- a/crypto/x509/x509_set.c +++ b/crypto/x509/x509_set.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_trs.c b/crypto/x509/x509_trs.c index 7a165424d80..1912c96551c 100644 --- a/crypto/x509/x509_trs.c +++ b/crypto/x509/x509_trs.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b); diff --git a/crypto/x509/x509_txt.c b/crypto/x509/x509_txt.c index 5ac72d0bfd3..6e8cdaa256d 100644 --- a/crypto/x509/x509_txt.c +++ b/crypto/x509/x509_txt.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_v3.c b/crypto/x509/x509_v3.c index ad33be6c2d6..4e9c8f54078 100644 --- a/crypto/x509/x509_v3.c +++ b/crypto/x509/x509_v3.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index 4538b8b83ee..7e00436ec09 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509_vpm.c b/crypto/x509/x509_vpm.c index 4b6ec635804..5d8c5f800a5 100644 --- a/crypto/x509/x509_vpm.c +++ b/crypto/x509/x509_vpm.c @@ -59,7 +59,7 @@ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509cset.c b/crypto/x509/x509cset.c index 042c90de868..925ba692507 100644 --- a/crypto/x509/x509cset.c +++ b/crypto/x509/x509cset.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509name.c b/crypto/x509/x509name.c index 5a7084532ac..234ddfee49d 100644 --- a/crypto/x509/x509name.c +++ b/crypto/x509/x509name.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509rset.c b/crypto/x509/x509rset.c index 80e273e6429..cafaf756016 100644 --- a/crypto/x509/x509rset.c +++ b/crypto/x509/x509rset.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x509spki.c b/crypto/x509/x509spki.c index 482741ae56a..116f78800f0 100644 --- a/crypto/x509/x509spki.c +++ b/crypto/x509/x509spki.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey) diff --git a/crypto/x509/x509type.c b/crypto/x509/x509type.c index 033175257a7..bc93697a2d4 100644 --- a/crypto/x509/x509type.c +++ b/crypto/x509/x509type.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x_all.c b/crypto/x509/x_all.c index 9c3c129c39f..a7ad148793b 100644 --- a/crypto/x509/x_all.c +++ b/crypto/x509/x_all.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x_attrib.c b/crypto/x509/x_attrib.c index 9782fda4742..65fd6e50abc 100644 --- a/crypto/x509/x_attrib.c +++ b/crypto/x509/x_attrib.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509/x_name.c b/crypto/x509/x_name.c index e61dfb2d31b..f8fd337cff5 100644 --- a/crypto/x509/x_name.c +++ b/crypto/x509/x_name.c @@ -58,7 +58,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include "internal/x509_int.h" diff --git a/crypto/x509v3/pcy_cache.c b/crypto/x509v3/pcy_cache.c index 8e78011858d..61065aadc5b 100644 --- a/crypto/x509v3/pcy_cache.c +++ b/crypto/x509v3/pcy_cache.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/pcy_data.c b/crypto/x509v3/pcy_data.c index ef6edb1fe5a..c29641f2c68 100644 --- a/crypto/x509v3/pcy_data.c +++ b/crypto/x509v3/pcy_data.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/pcy_lib.c b/crypto/x509v3/pcy_lib.c index 58ce8a0d12b..b048f917a71 100644 --- a/crypto/x509v3/pcy_lib.c +++ b/crypto/x509v3/pcy_lib.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/pcy_map.c b/crypto/x509v3/pcy_map.c index b99eb91cf7f..a4ff30cb763 100644 --- a/crypto/x509v3/pcy_map.c +++ b/crypto/x509v3/pcy_map.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/pcy_tree.c b/crypto/x509v3/pcy_tree.c index 7b54e5c47c7..e7ab7cd8b1b 100644 --- a/crypto/x509v3/pcy_tree.c +++ b/crypto/x509v3/pcy_tree.c @@ -57,7 +57,7 @@ * */ -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_addr.c b/crypto/x509v3/v3_addr.c index 2029475eb09..5c22c6d8826 100644 --- a/crypto/x509v3/v3_addr.c +++ b/crypto/x509v3/v3_addr.c @@ -62,7 +62,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_akey.c b/crypto/x509v3/v3_akey.c index 61bc7b35bd0..abad217f475 100644 --- a/crypto/x509v3/v3_akey.c +++ b/crypto/x509v3/v3_akey.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_akeya.c b/crypto/x509v3/v3_akeya.c index 2cc85b76234..99144727b11 100644 --- a/crypto/x509v3/v3_akeya.c +++ b/crypto/x509v3/v3_akeya.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_alt.c b/crypto/x509v3/v3_alt.c index 20f94903afa..b3c3644bb36 100644 --- a/crypto/x509v3/v3_alt.c +++ b/crypto/x509v3/v3_alt.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_asid.c b/crypto/x509v3/v3_asid.c index c5e569405fe..f390c2d019d 100644 --- a/crypto/x509v3/v3_asid.c +++ b/crypto/x509v3/v3_asid.c @@ -61,7 +61,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_bcons.c b/crypto/x509v3/v3_bcons.c index 3b89efba34c..d49a0103890 100644 --- a/crypto/x509v3/v3_bcons.c +++ b/crypto/x509v3/v3_bcons.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_bitst.c b/crypto/x509v3/v3_bitst.c index 9072b4228e2..b2f6392a0c4 100644 --- a/crypto/x509v3/v3_bitst.c +++ b/crypto/x509v3/v3_bitst.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_conf.c b/crypto/x509v3/v3_conf.c index 51f39f5ed15..38f198ee8a7 100644 --- a/crypto/x509v3/v3_conf.c +++ b/crypto/x509v3/v3_conf.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_cpols.c b/crypto/x509v3/v3_cpols.c index cac91b94e12..a3268765afe 100644 --- a/crypto/x509v3/v3_cpols.c +++ b/crypto/x509v3/v3_cpols.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_crld.c b/crypto/x509v3/v3_crld.c index 67d019aeaaa..9b0d21f80db 100644 --- a/crypto/x509v3/v3_crld.c +++ b/crypto/x509v3/v3_crld.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_enum.c b/crypto/x509v3/v3_enum.c index 7678664fc39..774eb347319 100644 --- a/crypto/x509v3/v3_enum.c +++ b/crypto/x509v3/v3_enum.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static ENUMERATED_NAMES crl_reasons[] = { diff --git a/crypto/x509v3/v3_extku.c b/crypto/x509v3/v3_extku.c index 70d35545196..d5da55151e8 100644 --- a/crypto/x509v3/v3_extku.c +++ b/crypto/x509v3/v3_extku.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_genn.c b/crypto/x509v3/v3_genn.c index 7f40bfabe05..b4b8de7ba8f 100644 --- a/crypto/x509v3/v3_genn.c +++ b/crypto/x509v3/v3_genn.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_ia5.c b/crypto/x509v3/v3_ia5.c index 7cae1b67866..ca1544789c4 100644 --- a/crypto/x509v3/v3_ia5.c +++ b/crypto/x509v3/v3_ia5.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_info.c b/crypto/x509v3/v3_info.c index 872d5c7d9ae..277609e4ffc 100644 --- a/crypto/x509v3/v3_info.c +++ b/crypto/x509v3/v3_info.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_int.c b/crypto/x509v3/v3_int.c index 8bfdb37e7a8..9895ac5979f 100644 --- a/crypto/x509v3/v3_int.c +++ b/crypto/x509v3/v3_int.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include const X509V3_EXT_METHOD v3_crl_num = { diff --git a/crypto/x509v3/v3_lib.c b/crypto/x509v3/v3_lib.c index 4bec817c7a1..93af5716cf0 100644 --- a/crypto/x509v3/v3_lib.c +++ b/crypto/x509v3/v3_lib.c @@ -59,7 +59,7 @@ /* X509 v3 extension utilities */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_ncons.c b/crypto/x509v3/v3_ncons.c index 9d48fb994b3..315bd3c294c 100644 --- a/crypto/x509v3/v3_ncons.c +++ b/crypto/x509v3/v3_ncons.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_pci.c b/crypto/x509v3/v3_pci.c index c795db787d3..c39acd7f7fb 100644 --- a/crypto/x509v3/v3_pci.c +++ b/crypto/x509v3/v3_pci.c @@ -36,7 +36,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_pcons.c b/crypto/x509v3/v3_pcons.c index a1b27d6ae35..e170b8078bc 100644 --- a/crypto/x509v3/v3_pcons.c +++ b/crypto/x509v3/v3_pcons.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_pku.c b/crypto/x509v3/v3_pku.c index dd01c44169d..5056fb3d7d3 100644 --- a/crypto/x509v3/v3_pku.c +++ b/crypto/x509v3/v3_pku.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_pmaps.c b/crypto/x509v3/v3_pmaps.c index 14253aae350..b862e3e570a 100644 --- a/crypto/x509v3/v3_pmaps.c +++ b/crypto/x509v3/v3_pmaps.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_prn.c b/crypto/x509v3/v3_prn.c index 2d516749720..ef219487b5f 100644 --- a/crypto/x509v3/v3_prn.c +++ b/crypto/x509v3/v3_prn.c @@ -59,7 +59,7 @@ /* X509 v3 extension utilities */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_purp.c b/crypto/x509v3/v3_purp.c index dc727959785..1f9296a930d 100644 --- a/crypto/x509v3/v3_purp.c +++ b/crypto/x509v3/v3_purp.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_scts.c b/crypto/x509v3/v3_scts.c index e9ee66884cd..61e5a83b68f 100644 --- a/crypto/x509v3/v3_scts.c +++ b/crypto/x509v3/v3_scts.c @@ -57,7 +57,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include diff --git a/crypto/x509v3/v3_skey.c b/crypto/x509v3/v3_skey.c index 977844b55a4..c0c71c0882f 100644 --- a/crypto/x509v3/v3_skey.c +++ b/crypto/x509v3/v3_skey.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, diff --git a/crypto/x509v3/v3_sxnet.c b/crypto/x509v3/v3_sxnet.c index fff3b00774e..13d7286d229 100644 --- a/crypto/x509v3/v3_sxnet.c +++ b/crypto/x509v3/v3_sxnet.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3_utl.c b/crypto/x509v3/v3_utl.c index d50c2fa26cd..cd8aff291fb 100644 --- a/crypto/x509v3/v3_utl.c +++ b/crypto/x509v3/v3_utl.c @@ -60,7 +60,7 @@ #include #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include diff --git a/crypto/x509v3/v3conf.c b/crypto/x509v3/v3conf.c index 41aa2669481..6d2cd6df5c2 100644 --- a/crypto/x509v3/v3conf.c +++ b/crypto/x509v3/v3conf.c @@ -58,7 +58,7 @@ */ #include -#include "cryptlib.h" +#include "internal/cryptlib.h" #include #include #include