summaryrefslogtreecommitdiffstats
path: root/crypto/evp/m_ripemd.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-06-29 23:52:08 +0000
committerUlf Möller <ulf@openssl.org>1999-06-29 23:52:08 +0000
commit5676d8cb7679589523549ca8587277428cb0ce6b (patch)
tree1fd9858ecf505473290fa1c5635e6c19747aa9b2 /crypto/evp/m_ripemd.c
parentce8b25741380eb08ca25ad06c2e83370067734ce (diff)
Fix no-hmac and no-ripemd.
Diffstat (limited to 'crypto/evp/m_ripemd.c')
-rw-r--r--crypto/evp/m_ripemd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/evp/m_ripemd.c b/crypto/evp/m_ripemd.c
index 87619ed8c7..3d781a4e8d 100644
--- a/crypto/evp/m_ripemd.c
+++ b/crypto/evp/m_ripemd.c
@@ -56,8 +56,10 @@
* [including the GNU Public Licence.]
*/
+#ifndef NO_RIPEMD
#include <stdio.h>
#include "cryptlib.h"
+#include <openssl/ripemd.h>
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/x509.h>
@@ -79,3 +81,4 @@ EVP_MD *EVP_ripemd160(void)
{
return(&ripemd160_md);
}
+#endif