Process Hacker
md5.h
Go to the documentation of this file.
1 #ifndef _MD5_H
2 #define _MD5_H
3 
4 typedef struct
5 {
6  ULONG i[2];
7  ULONG buf[4];
8  UCHAR in[64];
9  UCHAR digest[16];
10 } MD5_CTX;
11 
13  _Out_ MD5_CTX *Context
14  );
15 
17  _Inout_ MD5_CTX *Context,
18  _In_reads_bytes_(Length) UCHAR *Input,
19  _In_ ULONG Length
20  );
21 
23  _Inout_ MD5_CTX *Context
24  );
25 
26 #endif