36#include "netif/ppp/ppp_opts.h"
37#if LWIP_INCLUDED_POLARSSL_MD5
39#ifndef LWIP_INCLUDED_POLARSSL_MD5_H
40#define LWIP_INCLUDED_POLARSSL_MD5_H
47 unsigned long total[2];
48 unsigned long state[4];
49 unsigned char buffer[64];
62void md5_starts( md5_context *ctx );
71void md5_update( md5_context *ctx,
const unsigned char *input,
int ilen );
79void md5_finish( md5_context *ctx,
unsigned char output[16] );
88void md5(
unsigned char *input,
int ilen,
unsigned char output[16] );