Reactos
at master 19 lines 326 B view raw
1 2#pragma once 3 4#include <ntdef.h> 5 6typedef 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 14VOID NTAPI MD4Init( MD4_CTX *ctx ); 15 16VOID NTAPI MD4Update( MD4_CTX *ctx, const unsigned char *buf, unsigned int len ); 17 18VOID NTAPI MD4Final( MD4_CTX *ctx ); 19