mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
bd6371953e
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3354 21ef857c-d57f-4fe0-8362-d861dc6d29cd
27 lines
382 B
C
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
|