mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
20 lines
326 B
C
20 lines
326 B
C
|
|
#pragma once
|
|
|
|
#include <ntdef.h>
|
|
|
|
typedef struct
|
|
{
|
|
unsigned int i[2];
|
|
unsigned int buf[4];
|
|
unsigned char in[64];
|
|
unsigned char digest[16];
|
|
} MD5_CTX;
|
|
|
|
VOID NTAPI MD5Init( MD5_CTX *ctx );
|
|
|
|
VOID NTAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len );
|
|
|
|
VOID NTAPI MD5Final( MD5_CTX *ctx );
|
|
|