md5.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* MD5.H - header file for MD5C.C
  2.  */
  3. /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  4. rights reserved.
  5. License to copy and use this software is granted provided that it
  6. is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  7. Algorithm" in all material mentioning or referencing this software
  8. or this function.
  9. License is also granted to make and use derivative works provided
  10. that such works are identified as "derived from the RSA Data
  11. Security, Inc. MD5 Message-Digest Algorithm" in all material
  12. mentioning or referencing the derived work.
  13. RSA Data Security, Inc. makes no representations concerning either
  14. the merchantability of this software or the suitability of this
  15. software for any particular purpose. It is provided "as is"
  16. without express or implied warranty of any kind.
  17. These notices must be retained in any copies of any part of this
  18. documentation and/or software.
  19.  */
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /* MD5 context. */
  24. typedef struct {
  25.   uint32_t state[4];            /* state (ABCD) */
  26.   uint32_t count[2];         /* number of bits, modulo 2^64 (lsb first) */
  27.   unsigned char buffer[64];     /* input buffer */
  28. } MD5_CTX;
  29. void MD5Init(MD5_CTX *context);
  30. void MD5Update(MD5_CTX *context, unsigned char *input, unsigned int inputLen);
  31. void MD5Final(unsigned char digest[16], MD5_CTX *context);
  32. #ifdef __cplusplus
  33. }
  34. #endif