md5.h
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #ifndef _MD5_H
  2. #define _MD5_H
  3. #ifdef __alpha
  4. typedef unsigned int uint32;
  5. #else
  6. typedef unsigned long uint32;
  7. #endif
  8. struct MD5Context {
  9. uint32 buf[4];
  10. uint32 bits[2];
  11. unsigned char in[64];
  12. };
  13. void MD5Init(struct MD5Context *context);
  14. void MD5Update(struct MD5Context *context, unsigned char const *buf,
  15.        unsigned len);
  16. void MD5Final(unsigned char digest[16], struct MD5Context *context);
  17. void MD5Transform(uint32 buf[4], uint32 const in[16]);
  18. /*
  19.  * This is needed to make RSAREF happy on some MS-DOS compilers.
  20.  */
  21. typedef struct MD5Context MD5_CTX;
  22. #endif /* !MD5_H */