aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-02-04 14:01:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-02-04 14:01:38 +0000
commitaf57d843124672a9053a4da60ad7f9b6d4324a5a (patch)
treebe04d473220a67bbe9f5075a13f3cf299b8ade7a /crypto/evp/evp.h
parent53002dc69147ed67513623acb6ad390b69dac4c7 (diff)
downloadopenssl-af57d843124672a9053a4da60ad7f9b6d4324a5a.tar.gz
Rename SSLeay_add_all_algorithms() et al to
OpenSSL_add_all_algorithms(). Move these into separate files so they work properly.
Diffstat (limited to 'crypto/evp/evp.h')
-rw-r--r--crypto/evp/evp.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index 47323de16a..bc99e87578 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -593,9 +593,12 @@ EVP_CIPHER *EVP_rc5_32_12_16_ecb(void);
EVP_CIPHER *EVP_rc5_32_12_16_cfb(void);
EVP_CIPHER *EVP_rc5_32_12_16_ofb(void);
-void SSLeay_add_all_algorithms(void);
-void SSLeay_add_all_ciphers(void);
-void SSLeay_add_all_digests(void);
+void OpenSSL_add_all_algorithms(void);
+void OpenSSL_add_all_ciphers(void);
+void OpenSSL_add_all_digests(void);
+#define SSLeay_add_all_algorithms() OpenSSL_add_all_algorithms()
+#define SSLeay_add_all_ciphers() OpenSSL_add_all_ciphers()
+#define SSLeay_add_all_digests() OpenSSL_add_all_digests()
int EVP_add_cipher(EVP_CIPHER *cipher);
int EVP_add_digest(EVP_MD *digest);