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

MySQL数据库

开发平台:

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. /* GLOBAL.H - RSAREF types and constants
  21.  */
  22. /* PROTOTYPES should be set to one if and only if the compiler supports
  23.   function argument prototyping.
  24. The following makes PROTOTYPES default to 0 if it has not already
  25.   been defined with C compiler flags.
  26.  */
  27. /* egcs 1.1.2 under linux didn't defined it.... :( */
  28. #ifndef PROTOTYPES
  29. #define PROTOTYPES 1 /* Assume prototypes */
  30. #endif
  31. /* POINTER defines a generic pointer type */
  32. typedef unsigned char *POINTER;
  33. /* UINT2 defines a two byte word */
  34. typedef uint16 UINT2; /* Fix for MySQL / Alpha */
  35. /* UINT4 defines a four byte word */
  36. typedef uint32 UINT4; /* Fix for MySQL / Alpha */
  37. /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
  38. If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
  39.   returns an empty list.
  40.  */
  41. #if PROTOTYPES
  42. #define PROTO_LIST(list) list
  43. #else
  44. #define PROTO_LIST(list) ()
  45. #endif
  46. /* MD5 context. */
  47. typedef struct {
  48.   UINT4 state[4];                                   /* state (ABCD) */
  49.   UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
  50.   unsigned char buffer[64];                         /* input buffer */
  51. } MD5_CTX;
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif
  55.        void MD5Init PROTO_LIST ((MD5_CTX *));
  56.        void MD5Update PROTO_LIST
  57.          ((MD5_CTX *, unsigned char *, unsigned int));
  58.        void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
  59. #ifdef __cplusplus
  60. }
  61. #endif