Go to the documentation of this file.
27 #ifndef POLARSSL_MD4_H
28 #define POLARSSL_MD4_H
36 typedef UINT32 uint32_t;
41 #define POLARSSL_ERR_MD4_FILE_IO_ERROR -0x0072
43 #if !defined(POLARSSL_MD4_ALT)
58 unsigned char buffer[64];
60 unsigned char ipad[64];
61 unsigned char opad[64];
108 void md4(
const unsigned char *input,
size_t ilen,
unsigned char output[16] );
118 int md4_file(
const char *path,
unsigned char output[16] );
162 void md4_hmac(
const unsigned char *key,
size_t keylen,
163 const unsigned char *input,
size_t ilen,
164 unsigned char output[16] );