Commit b39fc560 authored by Richard Levitte's avatar Richard Levitte
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
parent 7a05eaac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)

+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@
 *
 */

#include "cryptlib.h"
#include "internal/cryptlib.h"

#include <openssl/aes.h>
#include "aes_locl.h"
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@
 * ====================================================================
 */

#include "cryptlib.h"
#include "internal/cryptlib.h"
#include <openssl/aes.h>
#include <openssl/modes.h>

+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
 */

#include <stdio.h>
#include "cryptlib.h"
#include "internal/cryptlib.h"
#include <openssl/asn1.h>
#include "asn1_locl.h"

+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@

#include <stdio.h>
#include <limits.h>
#include "cryptlib.h"
#include "internal/cryptlib.h"
#include <openssl/buffer.h>
#include <openssl/asn1.h>

Loading