xref: /reactos/sdk/lib/cryptlib/md4.h (revision c2c66aff)
1 
2 #pragma once
3 
4 #include <ntdef.h>
5 
6 typedef struct
7 {
8     unsigned int buf[4];
9     unsigned int i[2];
10     unsigned char in[64];
11     unsigned char digest[16];
12 } MD4_CTX;
13 
14 VOID NTAPI MD4Init( MD4_CTX *ctx );
15 
16 VOID NTAPI MD4Update( MD4_CTX *ctx, const unsigned char *buf, unsigned int len );
17 
18 VOID NTAPI MD4Final( MD4_CTX *ctx );
19 
20