Process Hacker
Main Page
Namespaces
Data Structures
Files
File List
Globals
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
12
VOID
MD5Init
(
13
_Out_
MD5_CTX
*Context
14
);
15
16
VOID
MD5Update
(
17
_Inout_
MD5_CTX
*Context,
18
_In_reads_bytes_(Length) UCHAR *Input,
19
_In_ ULONG Length
20
);
21
22
VOID
MD5Final
(
23
_Inout_
MD5_CTX
*Context
24
);
25
26
#endif
phlib
include
md5.h
Generated by
1.8.2