md5.h
上传用户:zfm_0418
上传日期:2013-03-09
资源大小:7k
文件大小:1k
源码类别:

加密解密

开发平台:

C/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. /* MD5 context. */
  21. typedef struct {
  22.   UINT4 state[4];                                   /* state (ABCD) */
  23.   UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
  24.   unsigned char buffer[64];                         /* input buffer */
  25. } MD5_CTX;
  26. void MD5Init PROTO_LIST ((MD5_CTX *));
  27. void MD5Update PROTO_LIST
  28.   ((MD5_CTX *, unsigned char *, unsigned int));
  29. void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));