Include crypto.h to pull in definition of OPENSSL_cleanse in various
authorDr. Stephen Henson <steve@openssl.org>
Wed, 4 Dec 2002 23:08:08 +0000 (23:08 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 4 Dec 2002 23:08:08 +0000 (23:08 +0000)
places.

crypto/des/read2pwd.c
crypto/des/str2key.c
crypto/md2/md2_dgst.c
crypto/md4/md4_one.c
crypto/md5/md5_one.c
crypto/ripemd/rmd_one.c
crypto/sha/sha1_one.c
crypto/sha/sha_one.c

index 25d3c63131e42589607d0c67b1bbf7c3426419a8..115132deecbd35c707b4c593219fb0828190ad40 100644 (file)
@@ -57,6 +57,7 @@
  */
 
 #include "des_locl.h"
+#include <openssl/crypto.h>
 
 int des_read_password(des_cblock *key, const char *prompt, int verify)
        {
index fc5b96ee874483005e482d11b3143de189cb408b..10e1dc174d93f2639509d087307c28737f6896fb 100644 (file)
@@ -56,6 +56,7 @@
  * [including the GNU Public Licence.]
  */
 
+#include <openssl/crypto.h>
 #include "des_locl.h"
 
 void des_string_to_key(const char *str, des_cblock *key)
index 458a3fad7fb854c4eec1ed203cf92489e293c3cf..fc25280469a4b9e3ca55780a9ef2a6409117fcc8 100644 (file)
@@ -61,6 +61,7 @@
 #include <string.h>
 #include <openssl/md2.h>
 #include <openssl/opensslv.h>
+#include <openssl/crypto.h>
 
 const char *MD2_version="MD2" OPENSSL_VERSION_PTEXT;
 
index 53efd430ec01640c9ee76d3ce90f9bd8ee3433fc..00565507e4bb2154d3c088739f67f421212a1d9a 100644 (file)
@@ -59,6 +59,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <openssl/md4.h>
+#include <openssl/crypto.h>
 
 #ifdef CHARSET_EBCDIC
 #include <openssl/ebcdic.h>
index c67eb795ca76398aa8c58ab03575c6960d743c41..c5dd2d81db49373db908cb14814b2eeb2363ce9d 100644 (file)
@@ -59,6 +59,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <openssl/md5.h>
+#include <openssl/crypto.h>
 
 #ifdef CHARSET_EBCDIC
 #include <openssl/ebcdic.h>
index a78328228281537351b0302d852f2ad7e11d41c5..f8b580c33a3a128591f0a051c260e3fbcdda5c2a 100644 (file)
@@ -59,6 +59,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <openssl/ripemd.h>
+#include <openssl/crypto.h>
 
 unsigned char *RIPEMD160(const unsigned char *d, unsigned long n,
             unsigned char *md)
index e32847ef6c95b66ffadd13eccbab93ffff8df05d..acf3e92ff22bd754d472923d21c5da8beb63a93c 100644 (file)
@@ -59,6 +59,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <openssl/sha.h>
+#include <openssl/crypto.h>
 
 #ifndef NO_SHA1
 unsigned char *SHA1(const unsigned char *d, unsigned long n, unsigned char *md)
index 65e15befb73306cff58f0fd2fd8cc52cf6f4225a..ece37146c21dc1334a63956ced5f7acdb4bacc42 100644 (file)
@@ -59,6 +59,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <openssl/sha.h>
+#include <openssl/crypto.h>
 
 #ifndef NO_SHA0
 unsigned char *SHA(const unsigned char *d, unsigned long n, unsigned char *md)