Files
mirror-processhacker/2.x/trunk/phlib/include/md5.h
T
wj32 bd6371953e added MD5 and SHA implementations to avoid importing them
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3354 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-07-13 05:15:00 +00:00

27 lines
382 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_bcount(Length) UCHAR *Input,
__in ULONG Length
);
VOID MD5Final(
__inout MD5_CTX *Context
);
#endif