aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 16:30:06 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 16:30:06 +0000
commit0ae645db10bdd05aa66ded0cb68048a860d5ea5d (patch)
tree51a053f92ddf58ddd884cc10d2e3ea454fa54af5 /crypto/evp/evp.h
parent434c5dd37caacbd2436eaf8f32f4be5b9e769ce4 (diff)
downloadopenssl-0ae645db10bdd05aa66ded0cb68048a860d5ea5d.tar.gz
Clean up prototypes (prepare for removing NOPROTO).
Diffstat (limited to 'crypto/evp/evp.h')
-rw-r--r--crypto/evp/evp.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index 248ac0c191..21417b1dfd 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -190,28 +190,28 @@ typedef struct evp_pkey_md_st
EVP_PKEY_METHOD *pkey;
} EVP_PKEY_MD;
-#define EVP_rsa_md2()
+#define EVP_rsa_md2() \
EVP_PKEY_MD_add(NID_md2WithRSAEncryption,\
EVP_rsa_pkcs1(),EVP_md2())
-#define EVP_rsa_md5()
+#define EVP_rsa_md5() \
EVP_PKEY_MD_add(NID_md5WithRSAEncryption,\
EVP_rsa_pkcs1(),EVP_md5())
-#define EVP_rsa_sha0()
+#define EVP_rsa_sha0() \
EVP_PKEY_MD_add(NID_shaWithRSAEncryption,\
EVP_rsa_pkcs1(),EVP_sha())
-#define EVP_rsa_sha1()
+#define EVP_rsa_sha1() \
EVP_PKEY_MD_add(NID_sha1WithRSAEncryption,\
EVP_rsa_pkcs1(),EVP_sha1())
-#define EVP_rsa_ripemd160()
+#define EVP_rsa_ripemd160() \
EVP_PKEY_MD_add(NID_ripemd160WithRSA,\
EVP_rsa_pkcs1(),EVP_ripemd160())
-#define EVP_rsa_mdc2()
+#define EVP_rsa_mdc2() \
EVP_PKEY_MD_add(NID_mdc2WithRSA,\
EVP_rsa_octet_string(),EVP_mdc2())
-#define EVP_dsa_sha()
+#define EVP_dsa_sha() \
EVP_PKEY_MD_add(NID_dsaWithSHA,\
EVP_dsa(),EVP_mdc2())
-#define EVP_dsa_sha1()
+#define EVP_dsa_sha1() \
EVP_PKEY_MD_add(NID_dsaWithSHA1,\
EVP_dsa(),EVP_sha1())