#include "md5.h"
+
static void MD5Transform(uint32_t buf[4], uint32_t const in[16]);
/*
* Update context to reflect the concatenation of another buffer full
* of bytes.
*/
-void MD5Update(struct MD5Context *ctx, uint8_t const *buf, uint_t len)
+void MD5Update(struct MD5Context *ctx, const uint8_t const *buf, uint_t len)
{
register uint32_t t;
};
void MD5Init(struct MD5Context *context);
-void MD5Update(struct MD5Context *context, uint8_t const *buf,
+void MD5Update(struct MD5Context *context, const uint8_t const *buf,
uint_t len);
void MD5Final(uint8_t digest[16], struct MD5Context *context);
-/*
- * This is needed to make RSAREF happy on some MS-DOS compilers.
- */
-typedef struct MD5Context MD5_CTX;
-
#endif /* !MD5_H */