summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-27 11:56:15 +0000
committerUlf Möller <ulf@openssl.org>1999-04-27 11:56:15 +0000
commitb5929507e3aa8f359f272148609348d1f2433bf7 (patch)
treeb70112d1a493a772d2dcadd9c1d84e79017b0bcb /crypto/evp
parent61f217eec2c1947dec04d3211516fe4f851e4c81 (diff)
Update NO_* macros.
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/c_all.c6
-rw-r--r--crypto/evp/e_cbc_bf.c3
-rw-r--r--crypto/evp/e_cfb_bf.c3
-rw-r--r--crypto/evp/e_ecb_bf.c3
-rw-r--r--crypto/evp/e_ofb_bf.c3
5 files changed, 7 insertions, 11 deletions
diff --git a/crypto/evp/c_all.c b/crypto/evp/c_all.c
index b48563e3c0..278e9e4dcf 100644
--- a/crypto/evp/c_all.c
+++ b/crypto/evp/c_all.c
@@ -121,7 +121,7 @@ void SSLeay_add_all_ciphers(void)
EVP_add_cipher_alias(SN_rc2_cbc,"rc2");
#endif
-#ifndef NO_BLOWFISH
+#ifndef NO_BF
EVP_add_cipher(EVP_bf_ecb());
EVP_add_cipher(EVP_bf_cfb());
EVP_add_cipher(EVP_bf_ofb());
@@ -169,7 +169,7 @@ void SSLeay_add_all_digests(void)
EVP_add_digest(EVP_dss());
#endif
#endif
-#ifndef NO_SHA1
+#ifndef NO_SHA
EVP_add_digest(EVP_sha1());
EVP_add_digest_alias(SN_sha1,"ssl3-sha1");
EVP_add_digest_alias(SN_sha1WithRSAEncryption,SN_sha1WithRSA);
@@ -183,7 +183,7 @@ void SSLeay_add_all_digests(void)
#if !defined(NO_MDC2) && !defined(NO_DES)
EVP_add_digest(EVP_mdc2());
#endif
-#ifndef NO_RMD160
+#ifndef NO_RIPEMD
EVP_add_digest(EVP_ripemd160());
EVP_add_digest_alias(SN_ripemd160,"ripemd");
EVP_add_digest_alias(SN_ripemd160,"rmd160");
diff --git a/crypto/evp/e_cbc_bf.c b/crypto/evp/e_cbc_bf.c
index a523d011c2..a55b842667 100644
--- a/crypto/evp/e_cbc_bf.c
+++ b/crypto/evp/e_cbc_bf.c
@@ -56,8 +56,7 @@
* [including the GNU Public Licence.]
*/
-#ifndef NO_BLOWFISH
-
+#ifndef NO_BF
#include <stdio.h>
#include "cryptlib.h"
#include <openssl/evp.h>
diff --git a/crypto/evp/e_cfb_bf.c b/crypto/evp/e_cfb_bf.c
index 0fb4d7fc32..63e1e624ea 100644
--- a/crypto/evp/e_cfb_bf.c
+++ b/crypto/evp/e_cfb_bf.c
@@ -56,8 +56,7 @@
* [including the GNU Public Licence.]
*/
-#ifndef NO_BLOWFISH
-
+#ifndef NO_BF
#include <stdio.h>
#include "cryptlib.h"
#include <openssl/evp.h>
diff --git a/crypto/evp/e_ecb_bf.c b/crypto/evp/e_ecb_bf.c
index d6924ac870..334736d253 100644
--- a/crypto/evp/e_ecb_bf.c
+++ b/crypto/evp/e_ecb_bf.c
@@ -56,8 +56,7 @@
* [including the GNU Public Licence.]
*/
-#ifndef NO_BLOWFISH
-
+#ifndef NO_BF
#include <stdio.h>
#include "cryptlib.h"
#include <openssl/evp.h>
diff --git a/crypto/evp/e_ofb_bf.c b/crypto/evp/e_ofb_bf.c
index 52a6f5729c..c82154b549 100644
--- a/crypto/evp/e_ofb_bf.c
+++ b/crypto/evp/e_ofb_bf.c
@@ -56,8 +56,7 @@
* [including the GNU Public Licence.]
*/
-#ifndef NO_BLOWFISH
-
+#ifndef NO_BF
#include <stdio.h>
#include "cryptlib.h"
#include <openssl/evp.h>