17 lines
464 B
C
17 lines
464 B
C
#ifndef MD5_H
|
|
#define MD5_H
|
|
|
|
struct MD5Context
|
|
{
|
|
uint32 buf[4];
|
|
uint32 bits[2];
|
|
unsigned char in[64];
|
|
};
|
|
|
|
idaman THREAD_SAFE void ida_export MD5Init(MD5Context *context);
|
|
idaman THREAD_SAFE void ida_export MD5Update(MD5Context *context, const uchar *buf, size_t len);
|
|
idaman THREAD_SAFE void ida_export MD5Final(uchar digest[16], MD5Context *context);
|
|
idaman THREAD_SAFE void ida_export MD5Transform(uint32 buf[4], uint32 const in[16]);
|
|
|
|
#endif /* !MD5_H */
|