md4.h 692 B

12345678910111213141516171819202122
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: md4.h,v 1.2 1999/11/17 04:07:17 jgg Exp $
  4. /* ######################################################################
  5. MD4 - MD4 Message Digest Algorithm.
  6. This is a simple function to compute the MD4 of
  7. ##################################################################### */
  8. /*}}}*/
  9. #ifndef DSYNC_MD4_H
  10. #define DSYNC_MD4_H
  11. void InitMD4(unsigned char MD4[16]);
  12. void ComputeMD4(unsigned char MD4[16],unsigned char const *Start,
  13. unsigned const char *End);
  14. void ComputeMD4Final(unsigned char MD4[16],unsigned char const *Start,
  15. unsigned char const *End,unsigned long TotalLen);
  16. #endif