summaryrefslogtreecommitdiffstats
path: root/fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-09-21 11:40:36 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-09-21 11:40:36 +0000
commit155ad6d2190827465198221237a4009c410ec0b4 (patch)
tree9db8fa55fab2c95666d68cef5a3aa17290913420 /fips
parent138f20433e6e9d71140ad7db6813592ebb8f34d5 (diff)
Fix warnings when more pedantic "debuge-steve32" target is used.
Diffstat (limited to 'fips')
-rw-r--r--fips/aes/fips_aesavs.c1
-rw-r--r--fips/des/fips_desmovs.c1
-rw-r--r--fips/dh/fips_dh_lib.c3
-rw-r--r--fips/dsa/fips_dsa_lib.c1
-rw-r--r--fips/dsa/fips_dsa_ossl.c1
-rw-r--r--fips/dsa/fips_dsa_selftest.c1
-rw-r--r--fips/dsa/fips_dsa_sign.c1
-rw-r--r--fips/dsa/fips_dsatest.c2
-rw-r--r--fips/fips_test_suite.c1
-rw-r--r--fips/hmac/fips_hmactest.c1
-rw-r--r--fips/rsa/fips_rsa_lib.c1
-rw-r--r--fips/rsa/fips_rsa_selftest.c1
-rw-r--r--fips/rsa/fips_rsagtest.c2
-rw-r--r--fips/rsa/fips_rsastest.c2
-rw-r--r--fips/rsa/fips_rsavtest.c2
-rw-r--r--fips/sha/fips_shatest.c1
16 files changed, 21 insertions, 1 deletions
diff --git a/fips/aes/fips_aesavs.c b/fips/aes/fips_aesavs.c
index ff7478044a..9ce613b96d 100644
--- a/fips/aes/fips_aesavs.c
+++ b/fips/aes/fips_aesavs.c
@@ -65,6 +65,7 @@
#include <ctype.h>
#include <openssl/aes.h>
#include <openssl/evp.h>
+#include <openssl/bn.h>
#include <openssl/err.h>
#include "e_os.h"
diff --git a/fips/des/fips_desmovs.c b/fips/des/fips_desmovs.c
index c0de11bd7b..2d3424cf9f 100644
--- a/fips/des/fips_desmovs.c
+++ b/fips/des/fips_desmovs.c
@@ -66,6 +66,7 @@
#include <ctype.h>
#include <openssl/des.h>
#include <openssl/evp.h>
+#include <openssl/bn.h>
#include <openssl/err.h>
#include "e_os.h"
diff --git a/fips/dh/fips_dh_lib.c b/fips/dh/fips_dh_lib.c
index 692f6b792f..93ff60452d 100644
--- a/fips/dh/fips_dh_lib.c
+++ b/fips/dh/fips_dh_lib.c
@@ -57,7 +57,8 @@
*/
#include <string.h>
-#include <openssl/dsa.h>
+#include <openssl/bn.h>
+#include <openssl/dh.h>
/* Minimal FIPS versions of FIPS_dh_new() and FIPS_dh_free(): to
* reduce external dependencies.
diff --git a/fips/dsa/fips_dsa_lib.c b/fips/dsa/fips_dsa_lib.c
index 12f0badb99..8af5f3b6f8 100644
--- a/fips/dsa/fips_dsa_lib.c
+++ b/fips/dsa/fips_dsa_lib.c
@@ -58,6 +58,7 @@
#include <string.h>
#include <openssl/dsa.h>
+#include <openssl/bn.h>
/* Minimal FIPS versions of FIPS_dsa_new() and FIPS_dsa_free: to
* reduce external dependencies.
diff --git a/fips/dsa/fips_dsa_ossl.c b/fips/dsa/fips_dsa_ossl.c
index 6e3747a205..50a6c13318 100644
--- a/fips/dsa/fips_dsa_ossl.c
+++ b/fips/dsa/fips_dsa_ossl.c
@@ -63,6 +63,7 @@
#include <openssl/dsa.h>
#include <openssl/rand.h>
#include <openssl/asn1.h>
+#include <openssl/err.h>
#ifndef OPENSSL_NO_ENGINE
#include <openssl/engine.h>
#endif
diff --git a/fips/dsa/fips_dsa_selftest.c b/fips/dsa/fips_dsa_selftest.c
index 6ff114e6b2..6880760a77 100644
--- a/fips/dsa/fips_dsa_selftest.c
+++ b/fips/dsa/fips_dsa_selftest.c
@@ -62,6 +62,7 @@
#include <openssl/fips.h>
#include <openssl/err.h>
#include <openssl/evp.h>
+#include <openssl/bn.h>
#ifdef OPENSSL_FIPS
diff --git a/fips/dsa/fips_dsa_sign.c b/fips/dsa/fips_dsa_sign.c
index 1707ff39b2..49e3894c32 100644
--- a/fips/dsa/fips_dsa_sign.c
+++ b/fips/dsa/fips_dsa_sign.c
@@ -61,6 +61,7 @@
#include <openssl/dsa.h>
#include <openssl/err.h>
#include <openssl/sha.h>
+#include <openssl/bn.h>
#ifdef OPENSSL_FIPS
diff --git a/fips/dsa/fips_dsatest.c b/fips/dsa/fips_dsatest.c
index 2729a98f17..c7e0f5164f 100644
--- a/fips/dsa/fips_dsatest.c
+++ b/fips/dsa/fips_dsatest.c
@@ -69,6 +69,8 @@
#include <openssl/rand.h>
#include <openssl/bio.h>
#include <openssl/err.h>
+#include <openssl/dsa.h>
+#include <openssl/bn.h>
#ifndef OPENSSL_NO_ENGINE
#include <openssl/engine.h>
#endif
diff --git a/fips/fips_test_suite.c b/fips/fips_test_suite.c
index 2d9de5f6a6..78a15b7758 100644
--- a/fips/fips_test_suite.c
+++ b/fips/fips_test_suite.c
@@ -20,6 +20,7 @@
#include <openssl/des.h>
#include <openssl/rsa.h>
#include <openssl/dsa.h>
+#include <openssl/dh.h>
#include <openssl/hmac.h>
#include <openssl/err.h>
diff --git a/fips/hmac/fips_hmactest.c b/fips/hmac/fips_hmactest.c
index d02a38f826..e59478faca 100644
--- a/fips/hmac/fips_hmactest.c
+++ b/fips/hmac/fips_hmactest.c
@@ -63,6 +63,7 @@
#include <openssl/evp.h>
#include <openssl/hmac.h>
#include <openssl/err.h>
+#include <openssl/bn.h>
#include <openssl/x509v3.h>
diff --git a/fips/rsa/fips_rsa_lib.c b/fips/rsa/fips_rsa_lib.c
index c135539f8b..cfdb7f3f04 100644
--- a/fips/rsa/fips_rsa_lib.c
+++ b/fips/rsa/fips_rsa_lib.c
@@ -59,6 +59,7 @@
#include <string.h>
#include <openssl/evp.h>
#include <openssl/rsa.h>
+#include <openssl/bn.h>
#include <openssl/err.h>
/* Minimal FIPS versions of FIPS_rsa_new() and FIPS_rsa_free: to
diff --git a/fips/rsa/fips_rsa_selftest.c b/fips/rsa/fips_rsa_selftest.c
index eecfb60312..bead61f572 100644
--- a/fips/rsa/fips_rsa_selftest.c
+++ b/fips/rsa/fips_rsa_selftest.c
@@ -52,6 +52,7 @@
#include <openssl/fips.h>
#include <openssl/rsa.h>
#include <openssl/evp.h>
+#include <openssl/bn.h>
#include <openssl/opensslconf.h>
#ifdef OPENSSL_FIPS
diff --git a/fips/rsa/fips_rsagtest.c b/fips/rsa/fips_rsagtest.c
index 0ae2a29335..116a104cd5 100644
--- a/fips/rsa/fips_rsagtest.c
+++ b/fips/rsa/fips_rsagtest.c
@@ -63,6 +63,8 @@
#include <openssl/evp.h>
#include <openssl/hmac.h>
#include <openssl/err.h>
+#include <openssl/rsa.h>
+#include <openssl/bn.h>
#include <openssl/x509v3.h>
#ifndef OPENSSL_FIPS
diff --git a/fips/rsa/fips_rsastest.c b/fips/rsa/fips_rsastest.c
index cca1a27cc9..1a6b1689c0 100644
--- a/fips/rsa/fips_rsastest.c
+++ b/fips/rsa/fips_rsastest.c
@@ -63,6 +63,8 @@
#include <openssl/evp.h>
#include <openssl/hmac.h>
#include <openssl/err.h>
+#include <openssl/rsa.h>
+#include <openssl/bn.h>
#include <openssl/x509v3.h>
#ifndef OPENSSL_FIPS
diff --git a/fips/rsa/fips_rsavtest.c b/fips/rsa/fips_rsavtest.c
index 13dc09a03f..8d8fbab7fa 100644
--- a/fips/rsa/fips_rsavtest.c
+++ b/fips/rsa/fips_rsavtest.c
@@ -64,6 +64,8 @@
#include <openssl/hmac.h>
#include <openssl/err.h>
#include <openssl/x509v3.h>
+#include <openssl/bn.h>
+#include <openssl/rsa.h>
#ifndef OPENSSL_FIPS
diff --git a/fips/sha/fips_shatest.c b/fips/sha/fips_shatest.c
index 6726116a2f..22458c5358 100644
--- a/fips/sha/fips_shatest.c
+++ b/fips/sha/fips_shatest.c
@@ -62,6 +62,7 @@
#include <openssl/bio.h>
#include <openssl/evp.h>
#include <openssl/err.h>
+#include <openssl/bn.h>
#include <openssl/x509v3.h>
#ifndef OPENSSL_FIPS