X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmd5.h;h=64beb61881ae93ceb69e267fc7adb0871aef7c88;hb=1f79d7b9a6f60f331ea0c90e9eb4ef7c40ee7aa5;hp=f81237108d8f47d5ec7ca0c6f806e19eb8c4c2f4;hpb=393c54bc74b1ae9bc6bba28913daa98456d0b673;p=citadel.git diff --git a/citadel/md5.h b/citadel/md5.h index f81237108..64beb6188 100644 --- a/citadel/md5.h +++ b/citadel/md5.h @@ -6,7 +6,7 @@ struct MD5Context { cit_uint32_t buf[4]; cit_uint32_t bits[2]; - unsigned char in[64]; + cit_uint32_t in[16]; }; void MD5Init(struct MD5Context *context); @@ -14,7 +14,7 @@ void MD5Update(struct MD5Context *context, unsigned char const *buf, unsigned len); void MD5Final(unsigned char digest[16], struct MD5Context *context); void MD5Transform(cit_uint32_t buf[4], cit_uint32_t const in[16]); -char *make_apop_string(char *realpass, char *nonce, u_char *buffer); +char *make_apop_string(char *realpass, char *nonce, char *buffer); /* * This is needed to make RSAREF happy on some MS-DOS compilers.