1 // -*- mode: cpp; mode: fold -*-
3 // $Id: md4.h,v 1.2 1999/11/17 04:07:17 jgg Exp $
4 /* ######################################################################
6 MD4 - MD4 Message Digest Algorithm.
8 This is a simple function to compute the MD4 of
10 ##################################################################### */
15 void InitMD4(unsigned char MD4[16]);
16 void ComputeMD4(unsigned char MD4[16],unsigned char const *Start,
17 unsigned const char *End);
18 void ComputeMD4Final(unsigned char MD4[16],unsigned char const *Start,
19 unsigned char const *End,unsigned long TotalLen);