Files
wj32 36a4284b8d converted all annotations to SAL 2.0
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5548 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2013-11-10 06:25:03 +00:00

27 lines
387 B
C

#ifndef _MD5_H
#define _MD5_H
typedef struct
{
ULONG i[2];
ULONG buf[4];
UCHAR in[64];
UCHAR digest[16];
} MD5_CTX;
VOID MD5Init(
_Out_ MD5_CTX *Context
);
VOID MD5Update(
_Inout_ MD5_CTX *Context,
_In_reads_bytes_(Length) UCHAR *Input,
_In_ ULONG Length
);
VOID MD5Final(
_Inout_ MD5_CTX *Context
);
#endif