md5_uint32 buffer[32];
};
-void *mutt_md5(const char *string, void *resbuf);
+void *mutt_md5(const char *str, void *buf);
void *mutt_md5_bytes(const void *buffer, size_t len, void *resbuf);
void *mutt_md5_finish_ctx(struct Md5Ctx *md5ctx, void *resbuf);
void mutt_md5_init_ctx(struct Md5Ctx *md5ctx);
-void mutt_md5_process(const char *string, struct Md5Ctx *md5ctx);
-void mutt_md5_process_bytes(const void *buffer, size_t len, struct Md5Ctx *md5ctx);
+void mutt_md5_process(const char *str, struct Md5Ctx *md5ctx);
+void mutt_md5_process_bytes(const void *buf, size_t buflen, struct Md5Ctx *md5ctx);
void mutt_md5_toascii(const void *digest, char *resbuf);
#endif /* MUTT_LIB_MD5_H */