aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crypto/Makefile3
-rw-r--r--crypto/o_dir.c2
-rw-r--r--crypto/o_dir_test.c2
-rw-r--r--crypto/o_str.c2
-rw-r--r--crypto/rsa/rsa_oaep.c2
-rw-r--r--crypto/rsa/rsa_pk1.c2
-rw-r--r--e_os.h4
-rw-r--r--include/internal/constant_time_locl.h (renamed from crypto/constant_time_locl.h)0
-rw-r--r--include/internal/o_dir.h (renamed from crypto/o_dir.h)0
-rw-r--r--include/internal/o_str.h (renamed from crypto/o_str.h)0
-rw-r--r--ssl/Makefile2
-rw-r--r--ssl/record/ssl3_record.c2
-rw-r--r--ssl/s3_cbc.c2
-rw-r--r--ssl/s3_srvr.c2
-rw-r--r--ssl/ssl_cert.c2
-rw-r--r--test/constant_time_test.c2
-rwxr-xr-xutil/mkdef.pl4
17 files changed, 16 insertions, 17 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 5270d75..de74a0f 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -43,8 +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 o_str.h o_dir.h \
- constant_time_locl.h
+HEADER= cryptlib.h buildinf.h md32_common.h
ALL= $(GENERAL) $(SRC) $(HEADER)
diff --git a/crypto/o_dir.c b/crypto/o_dir.c
index 2624244..7bff74e 100644
--- a/crypto/o_dir.c
+++ b/crypto/o_dir.c
@@ -70,7 +70,7 @@
#define LP_find_file OPENSSL_DIR_read
#define LP_find_file_end OPENSSL_DIR_end
-#include "o_dir.h"
+#include "internal/o_dir.h"
#define LPDIR_H
#if defined OPENSSL_SYS_UNIX || defined DJGPP
diff --git a/crypto/o_dir_test.c b/crypto/o_dir_test.c
index 7cdbbbc..733ffec 100644
--- a/crypto/o_dir_test.c
+++ b/crypto/o_dir_test.c
@@ -36,7 +36,7 @@
#include <stdio.h>
#include <errno.h>
#include "e_os2.h"
-#include "o_dir.h"
+#include "internal/o_dir.h"
#if defined OPENSSL_SYS_UNIX || defined OPENSSL_SYS_WIN32 || defined OPENSSL_SYS_WINCE
# define CURRDIR "."
diff --git a/crypto/o_str.c b/crypto/o_str.c
index 16fd4e4..f2f9404 100644
--- a/crypto/o_str.c
+++ b/crypto/o_str.c
@@ -59,7 +59,7 @@
#include <ctype.h>
#include <e_os.h>
-#include "o_str.h"
+#include "internal/o_str.h"
#if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && \
!defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_SYS_WINCE) && \
diff --git a/crypto/rsa/rsa_oaep.c b/crypto/rsa/rsa_oaep.c
index d988d6c..6edfb41 100644
--- a/crypto/rsa/rsa_oaep.c
+++ b/crypto/rsa/rsa_oaep.c
@@ -17,7 +17,7 @@
* one-wayness. For the RSA function, this is an equivalent notion.
*/
-#include "constant_time_locl.h"
+#include "internal/constant_time_locl.h"
#include <stdio.h>
#include "cryptlib.h"
diff --git a/crypto/rsa/rsa_pk1.c b/crypto/rsa/rsa_pk1.c
index 1bda998..e32a1d5 100644
--- a/crypto/rsa/rsa_pk1.c
+++ b/crypto/rsa/rsa_pk1.c
@@ -56,7 +56,7 @@
* [including the GNU Public Licence.]
*/
-#include "constant_time_locl.h"
+#include "internal/constant_time_locl.h"
#include <stdio.h>
#include "cryptlib.h"
diff --git a/e_os.h b/e_os.h
index 7f94bfc..4c1b4aa 100644
--- a/e_os.h
+++ b/e_os.h
@@ -605,7 +605,7 @@ extern int sys_nerr;
# define strerror(errnum) \
(((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
/* Being signed SunOS 4.x memcpy breaks ASN1_OBJECT table lookup */
-# include "crypto/o_str.h"
+# include "internal/o_str.h"
# define memcmp OPENSSL_memcmp
# endif
@@ -624,7 +624,7 @@ extern int sys_nerr;
# define strncasecmp _strnicmp
# elif defined(OPENSSL_SYS_VMS)
/* VMS below version 7.0 doesn't have strcasecmp() */
-# include "o_str.h"
+# include "internal/o_str.h"
# define strcasecmp OPENSSL_strcasecmp
# define strncasecmp OPENSSL_strncasecmp
# define OPENSSL_IMPLEMENTS_strncasecmp
diff --git a/crypto/constant_time_locl.h b/include/internal/constant_time_locl.h
index c786aea..c786aea 100644
--- a/crypto/constant_time_locl.h
+++ b/include/internal/constant_time_locl.h
diff --git a/crypto/o_dir.h b/include/internal/o_dir.h
index d554311..d554311 100644
--- a/crypto/o_dir.h
+++ b/include/internal/o_dir.h
diff --git a/crypto/o_str.h b/include/internal/o_str.h
index 5313528..5313528 100644
--- a/crypto/o_str.h
+++ b/include/internal/o_str.h
diff --git a/ssl/Makefile b/ssl/Makefile
index 18b17d2..7dc2e02 100644
--- a/ssl/Makefile
+++ b/ssl/Makefile
@@ -5,7 +5,7 @@
DIR= ssl
TOP= ..
CC= cc
-INCLUDES= -I../crypto -I$(TOP) -I../include
+INCLUDES= -I$(TOP) -I../include
CFLAG=-g
MAKEFILE= Makefile
AR= ar r
diff --git a/ssl/record/ssl3_record.c b/ssl/record/ssl3_record.c
index db6d4e7..0328127 100644
--- a/ssl/record/ssl3_record.c
+++ b/ssl/record/ssl3_record.c
@@ -110,7 +110,7 @@
*/
#include "../ssl_locl.h"
-#include "../../crypto/constant_time_locl.h"
+#include "internal/constant_time_locl.h"
#include <openssl/rand.h>
#include "record_locl.h"
diff --git a/ssl/s3_cbc.c b/ssl/s3_cbc.c
index ac0c5f3..f7997ea 100644
--- a/ssl/s3_cbc.c
+++ b/ssl/s3_cbc.c
@@ -53,7 +53,7 @@
*
*/
-#include "../crypto/constant_time_locl.h"
+#include "internal/constant_time_locl.h"
#include "ssl_locl.h"
#include <openssl/md5.h>
diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c
index 04dbb7a..4ee45eb 100644
--- a/ssl/s3_srvr.c
+++ b/ssl/s3_srvr.c
@@ -151,7 +151,7 @@
#include <stdio.h>
#include "ssl_locl.h"
-#include "../crypto/constant_time_locl.h"
+#include "internal/constant_time_locl.h"
#include <openssl/buffer.h>
#include <openssl/rand.h>
#include <openssl/objects.h>
diff --git a/ssl/ssl_cert.c b/ssl/ssl_cert.c
index 38e7b82..d8b47e6 100644
--- a/ssl/ssl_cert.c
+++ b/ssl/ssl_cert.c
@@ -123,7 +123,7 @@
# include <sys/types.h>
#endif
-#include "o_dir.h"
+#include "internal/o_dir.h"
#include <openssl/objects.h>
#include <openssl/bio.h>
#include <openssl/pem.h>
diff --git a/test/constant_time_test.c b/test/constant_time_test.c
index bdb2702..ed3d7ea 100644
--- a/test/constant_time_test.c
+++ b/test/constant_time_test.c
@@ -44,7 +44,7 @@
* [including the GNU Public Licence.]
*/
-#include "../crypto/constant_time_locl.h"
+#include "internal/constant_time_locl.h"
#include <limits.h>
#include <stdio.h>
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 6c4ce3f..18bc1ab 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -262,8 +262,8 @@ $ssl.=" include/openssl/srtp.h";
my $crypto ="include/openssl/crypto.h";
$crypto.=" crypto/cryptlib.h";
-$crypto.=" crypto/o_dir.h";
-$crypto.=" crypto/o_str.h";
+$crypto.=" include/internal/o_dir.h";
+$crypto.=" include/internal/o_str.h";
$crypto.=" include/openssl/des.h" ; # unless $no_des;
$crypto.=" include/openssl/idea.h" ; # unless $no_idea;
$crypto.=" include/openssl/rc4.h" ; # unless $no_rc4;