]> git.decadent.org.uk Git - dak.git/blob - tools/dsync-0.0/libdsync/contrib/md4.h
Merge commit 'godog/master' into merge
[dak.git] / tools / dsync-0.0 / libdsync / contrib / md4.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description                                                          /*{{{*/
3 // $Id: md4.h,v 1.2 1999/11/17 04:07:17 jgg Exp $
4 /* ######################################################################
5    
6    MD4 - MD4 Message Digest Algorithm.
7    
8    This is a simple function to compute the MD4 of 
9    
10    ##################################################################### */
11                                                                         /*}}}*/
12 #ifndef DSYNC_MD4_H
13 #define DSYNC_MD4_H
14
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);
20
21 #endif