41#if PPP_INCLUDED_POLARSSL_MD4
43#ifndef PPP_INCLUDED_POLARSSL_MD4_H
44#define PPP_INCLUDED_POLARSSL_MD4_H
51 unsigned long total[2];
52 unsigned long state[4];
53 unsigned char buffer[64];
66void md4_starts( md4_context *ctx );
75void md4_update( md4_context *ctx,
const unsigned char *input,
int ilen );
83void md4_finish( md4_context *ctx,
unsigned char output[16] );
92void md4(
unsigned char *input,
int ilen,
unsigned char output[16] );