home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 5 / CD_Magazyn_EXEC_nr_5.iso / Recent / comm / mail / YAM23src.lha / Source / includes / md5.h < prev   
Text File  |  2000-12-15  |  325b  |  15 lines

  1. typedef unsigned char *POINTER;
  2. typedef unsigned short int UINT2;
  3. typedef unsigned long int UINT4;
  4.  
  5. typedef struct
  6. {
  7.   UINT4 state[4];
  8.   UINT4 count[2];
  9.   unsigned char buffer[64];
  10. } MD5_CTX;
  11.  
  12. void MD5Init (MD5_CTX *);
  13. void MD5Update (MD5_CTX *, unsigned char *, unsigned int);
  14. void MD5Final (unsigned char [16], MD5_CTX *);
  15.