33 lines
600 B
C
33 lines
600 B
C
/* md5.h
|
|
** interface to MD5 hash function
|
|
**
|
|
** This code is in the Public Domain.
|
|
*/
|
|
|
|
/** @file
|
|
* MD5 hash API.
|
|
*/
|
|
|
|
#ifndef MD5_H
|
|
#define MD5_H
|
|
|
|
/* make sure the stdint.h types are available */
|
|
#include "ostypes.h"
|
|
|
|
struct MD5Context {
|
|
uint32_t buf[4];
|
|
uint32_t bits[2];
|
|
unsigned char in[64];
|
|
};
|
|
|
|
void MD5Init(struct MD5Context *context);
|
|
void MD5Update(struct MD5Context *context, unsigned char const *buf,
|
|
uint32_t len);
|
|
void MD5Final(unsigned char digest[16], struct MD5Context *context);
|
|
|
|
#ifdef DEBUG_MD5
|
|
void MD5DumpBytes(unsigned char *b, int len);
|
|
#endif
|
|
|
|
#endif /* !MD5_H */
|