diff options
Diffstat (limited to 'src/lib/libcrypto/mdc2')
-rw-r--r-- | src/lib/libcrypto/mdc2/Makefile | 14 | ||||
-rw-r--r-- | src/lib/libcrypto/mdc2/mdc2.h | 3 |
2 files changed, 10 insertions, 7 deletions
diff --git a/src/lib/libcrypto/mdc2/Makefile b/src/lib/libcrypto/mdc2/Makefile index 1d064f17a6..141553149d 100644 --- a/src/lib/libcrypto/mdc2/Makefile +++ b/src/lib/libcrypto/mdc2/Makefile | |||
@@ -84,10 +84,10 @@ mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
84 | mdc2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 84 | mdc2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
85 | mdc2_one.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 85 | mdc2_one.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
86 | mdc2_one.o: ../../include/openssl/ui_compat.h ../cryptlib.h mdc2_one.c | 86 | mdc2_one.o: ../../include/openssl/ui_compat.h ../cryptlib.h mdc2_one.c |
87 | mdc2dgst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 87 | mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
88 | mdc2dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/mdc2.h | 88 | mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
89 | mdc2dgst.o: ../../include/openssl/opensslconf.h | 89 | mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h |
90 | mdc2dgst.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 90 | mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
91 | mdc2dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 91 | mdc2dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
92 | mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 92 | mdc2dgst.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
93 | mdc2dgst.o: mdc2dgst.c | 93 | mdc2dgst.o: ../../include/openssl/ui_compat.h mdc2dgst.c |
diff --git a/src/lib/libcrypto/mdc2/mdc2.h b/src/lib/libcrypto/mdc2/mdc2.h index 72778a5212..f3e8e579d2 100644 --- a/src/lib/libcrypto/mdc2/mdc2.h +++ b/src/lib/libcrypto/mdc2/mdc2.h | |||
@@ -81,6 +81,9 @@ typedef struct mdc2_ctx_st | |||
81 | } MDC2_CTX; | 81 | } MDC2_CTX; |
82 | 82 | ||
83 | 83 | ||
84 | #ifdef OPENSSL_FIPS | ||
85 | int private_MDC2_Init(MDC2_CTX *c); | ||
86 | #endif | ||
84 | int MDC2_Init(MDC2_CTX *c); | 87 | int MDC2_Init(MDC2_CTX *c); |
85 | int MDC2_Update(MDC2_CTX *c, const unsigned char *data, size_t len); | 88 | int MDC2_Update(MDC2_CTX *c, const unsigned char *data, size_t len); |
86 | int MDC2_Final(unsigned char *md, MDC2_CTX *c); | 89 | int MDC2_Final(unsigned char *md, MDC2_CTX *c); |