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

网络编程

开发平台:

Unix_Linux

  1. #ident "@(#)local:usr/src/cmd/qpopper/md5.h 1.2 95/03/23 Labtam"
  2. /*  */
  3. /* @(#)$Id: md5.h,v 1.1.1.1 1997/03/14 05:01:06 qpop Exp $ */
  4. /* taken from RFC-1321/Appendices A.1/A.2 */
  5. /* GLOBAL.H - RSAREF types and constants
  6.  */
  7. /* PROTOTYPES should be set to one if and only if the compiler supports
  8.   function argument prototyping.
  9. The following makes PROTOTYPES default to 0 if it has not already
  10.   been defined with C compiler flags.
  11.  */
  12. #ifndef PROTOTYPES
  13. #define PROTOTYPES 0
  14. #endif
  15. /* POINTER defines a generic pointer type */
  16. typedef unsigned char *POINTER;
  17. /* UINT2 defines a two byte word */
  18. typedef unsigned short int UINT2;
  19. /* UINT4 defines a four byte word */
  20. #if (SIZEOF_UNSIGNED_LONG_INT != 4)
  21. /* This should cover 64bit OS' */
  22. typedef unsigned int UINT4;
  23. #else
  24. typedef unsigned long int UINT4;
  25. #endif
  26. /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
  27. If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
  28.   returns an empty list.
  29.  */
  30. #if PROTOTYPES
  31. #define PROTO_LIST(list) list
  32. #else
  33. #define PROTO_LIST(list) ()
  34. #endif
  35. /* MD5.H - header file for MD5C.C
  36.  */
  37. /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  38. rights reserved.
  39. License to copy and use this software is granted provided that it
  40. is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  41. Algorithm" in all material mentioning or referencing this software
  42. or this function.
  43. License is also granted to make and use derivative works provided
  44. that such works are identified as "derived from the RSA Data
  45. Security, Inc. MD5 Message-Digest Algorithm" in all material
  46. mentioning or referencing the derived work.
  47. RSA Data Security, Inc. makes no representations concerning either
  48. the merchantability of this software or the suitability of this
  49. software for any particular purpose. It is provided "as is"
  50. without express or implied warranty of any kind.
  51. These notices must be retained in any copies of any part of this
  52. documentation and/or software.
  53.  */
  54. /* MD5 context. */
  55. typedef struct {
  56.   UINT4 state[4];                                   /* state (ABCD) */
  57.   UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
  58.   unsigned char buffer[64];                         /* input buffer */
  59. } MD5_CTX;
  60. void MD5Init PROTO_LIST ((MD5_CTX *));
  61. void MD5Update PROTO_LIST
  62.   ((MD5_CTX *, unsigned char *, unsigned int));
  63. void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));