Commit 27af42f9 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Move some EVP internals to evp_int.h



Move EVP internals to evp_int.h, remove -Ievp hack from crypto/Makefile

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 5fe736e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ TOP= ..
CC=		cc
INCLUDE=	-I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
# INCLUDES targets sudbirs!
INCLUDES=	-I.. -I../.. -I../modes -I../evp -I../include -I../../include $(ZLIB_INCLUDE)
INCLUDES=	-I.. -I../.. -I../modes -I../include -I../../include $(ZLIB_INCLUDE)
CFLAG=		-g
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
#include <openssl/x509v3.h>
#include <openssl/evp.h>
#include <openssl/cmac.h>
#include "evp_locl.h"
#include "internal/evp_int.h"

/* The context structure and "key" is simply a CMAC_CTX */

+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@
# include <openssl/dsa.h>
#endif
#include <openssl/objects.h>
#include "evp_locl.h"
#include "internal/evp_int.h"

/* DH pkey context structure */

+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@
#include <openssl/x509.h>
#include <openssl/evp.h>
#include <openssl/bn.h>
#include "evp_locl.h"
#include "internal/evp_int.h"
#include "dsa_locl.h"

/* DSA pkey context structure */
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@
#include "ec_lcl.h"
#include <openssl/ecdsa.h>
#include <openssl/evp.h>
#include "evp_locl.h"
#include "internal/evp_int.h"

/* EC pkey context structure */

Loading