summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/mdc2/mdc2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/mdc2/mdc2.h')
-rw-r--r--src/lib/libcrypto/mdc2/mdc2.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/mdc2/mdc2.h b/src/lib/libcrypto/mdc2/mdc2.h
index ec8e159fc9..00acd707cd 100644
--- a/src/lib/libcrypto/mdc2/mdc2.h
+++ b/src/lib/libcrypto/mdc2/mdc2.h
@@ -82,9 +82,10 @@ typedef struct mdc2_ctx_st
82 82
83 83
84void MDC2_Init(MDC2_CTX *c); 84void MDC2_Init(MDC2_CTX *c);
85void MDC2_Update(MDC2_CTX *c, unsigned char *data, unsigned long len); 85void MDC2_Update(MDC2_CTX *c, const unsigned char *data, unsigned long len);
86void MDC2_Final(unsigned char *md, MDC2_CTX *c); 86void MDC2_Final(unsigned char *md, MDC2_CTX *c);
87unsigned char *MDC2(unsigned char *d, unsigned long n, unsigned char *md); 87unsigned char *MDC2(const unsigned char *d, unsigned long n,
88 unsigned char *md);
88 89
89#ifdef __cplusplus 90#ifdef __cplusplus
90} 91}