diff options
author | beck <> | 1999-09-29 04:37:45 +0000 |
---|---|---|
committer | beck <> | 1999-09-29 04:37:45 +0000 |
commit | de8f24ea083384bb66b32ec105dc4743c5663cdf (patch) | |
tree | 1412176ae62a3cab2cf2b0b92150fcbceaac6092 /src/lib/libcrypto/evp/m_ripemd.c | |
parent | cb929d29896bcb87c2a97417fbd03e50078fc178 (diff) | |
download | openbsd-de8f24ea083384bb66b32ec105dc4743c5663cdf.tar.gz openbsd-de8f24ea083384bb66b32ec105dc4743c5663cdf.tar.bz2 openbsd-de8f24ea083384bb66b32ec105dc4743c5663cdf.zip |
OpenSSL 0.9.4 merge
Diffstat (limited to 'src/lib/libcrypto/evp/m_ripemd.c')
-rw-r--r-- | src/lib/libcrypto/evp/m_ripemd.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/libcrypto/evp/m_ripemd.c b/src/lib/libcrypto/evp/m_ripemd.c index 04c5d8897b..3d781a4e8d 100644 --- a/src/lib/libcrypto/evp/m_ripemd.c +++ b/src/lib/libcrypto/evp/m_ripemd.c | |||
@@ -56,11 +56,13 @@ | |||
56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #ifndef NO_RIPEMD | ||
59 | #include <stdio.h> | 60 | #include <stdio.h> |
60 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
61 | #include "evp.h" | 62 | #include <openssl/ripemd.h> |
62 | #include "objects.h" | 63 | #include <openssl/evp.h> |
63 | #include "x509.h" | 64 | #include <openssl/objects.h> |
65 | #include <openssl/x509.h> | ||
64 | 66 | ||
65 | static EVP_MD ripemd160_md= | 67 | static EVP_MD ripemd160_md= |
66 | { | 68 | { |
@@ -75,7 +77,8 @@ static EVP_MD ripemd160_md= | |||
75 | sizeof(EVP_MD *)+sizeof(RIPEMD160_CTX), | 77 | sizeof(EVP_MD *)+sizeof(RIPEMD160_CTX), |
76 | }; | 78 | }; |
77 | 79 | ||
78 | EVP_MD *EVP_ripemd160() | 80 | EVP_MD *EVP_ripemd160(void) |
79 | { | 81 | { |
80 | return(&ripemd160_md); | 82 | return(&ripemd160_md); |
81 | } | 83 | } |
84 | #endif | ||