md5.h
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:2k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. /* MD5.H - header file for MD5C.C
  2.  */
  3. typedef unsigned long UINT4;
  4. /* Following inserted to remove dependencies on other include files - PRK */
  5. #ifndef _RSAREF_H_ /* Should find a cleaner way */
  6. #define PROTO_LIST(x) x
  7. typedef unsigned char * POINTER;
  8. #endif
  9. /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  10.    rights reserved.
  11.    License to copy and use this software is granted provided that it
  12.    is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  13.    Algorithm" in all material mentioning or referencing this software
  14.    or this function.
  15.    License is also granted to make and use derivative works provided
  16.    that such works are identified as "derived from the RSA Data
  17.    Security, Inc. MD5 Message-Digest Algorithm" in all material
  18.    mentioning or referencing the derived work.  
  19.                                                                     
  20.    RSA Data Security, Inc. makes no representations concerning either
  21.    the merchantability of this software or the suitability of this
  22.    software for any particular purpose. It is provided "as is"
  23.    without express or implied warranty of any kind.  
  24.                                                                     
  25.    These notices must be retained in any copies of any part of this
  26.    documentation and/or software.  
  27.  */
  28. #ifndef _MD5_H_
  29. #define _MD5_H_ 1
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. /* MD5 context. */
  34. typedef struct {
  35.   UINT4 state[4];                                   /* state (ABCD) */
  36.   UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
  37.   unsigned char buffer[64];                         /* input buffer */
  38. } MD5_CTX;
  39. void MD5Init PROTO_LIST ((MD5_CTX *));
  40. void MD5Update PROTO_LIST
  41.   ((MD5_CTX *, unsigned char *, unsigned int));
  42. void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif