summaryrefslogtreecommitdiffstats
path: root/crypto/md2/md2.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/md2/md2.h')
-rw-r--r--crypto/md2/md2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/md2/md2.h b/crypto/md2/md2.h
index 6fcb9b1bdc..45bf4cc29c 100644
--- a/crypto/md2/md2.h
+++ b/crypto/md2/md2.h
@@ -81,9 +81,9 @@ typedef struct MD2state_st
const char *MD2_options(void);
int MD2_Init(MD2_CTX *c);
-int MD2_Update(MD2_CTX *c, const unsigned char *data, unsigned long len);
+int MD2_Update(MD2_CTX *c, const unsigned char *data, size_t len);
int MD2_Final(unsigned char *md, MD2_CTX *c);
-unsigned char *MD2(const unsigned char *d, unsigned long n,unsigned char *md);
+unsigned char *MD2(const unsigned char *d, size_t n,unsigned char *md);
#ifdef __cplusplus
}
#endif