md5.h
上传用户:ets1996
上传日期:2014-09-30
资源大小:353k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  md5.h  
  4.   _##
  5.   _##  SNMP++v3.2.22
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2007 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Wed May  2 23:22:30 CEST 2007 
  27.   _##  
  28.   _##########################################################################*/
  29. #include "snmp_pp/config_snmp_pp.h"
  30. #if !defined(_USE_LIBTOMCRYPT) && !defined(_USE_OPENSSL)
  31. /* MD5.H - header file for MD5C.C */
  32. /* Copyright (C) 1991, RSA Data Security, Inc. All rights reserved.
  33.    License to copy and use this software is granted provided that it
  34.    is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  35.    Algorithm" in all material mentioning or referencing this software
  36.    or this function.
  37.    License is also granted to make and use derivative works provided
  38.    that such works are identified as "derived from the RSA Data
  39.    Security, Inc. MD5 Message-Digest Algorithm" in all material
  40.    mentioning or referencing the derived work.
  41.    RSA Data Security, Inc. makes no representations concerning either
  42.    the merchantability of this software or the suitability of this
  43.    software for any particular purpose. It is provided "as is"
  44.    without express or implied warranty of any kind.
  45.    These notices must be retained in any copies of any part of this
  46.    documentation and/or software.
  47.  */
  48. // $Id: md5.h 287 2007-03-22 22:37:09Z katz $
  49. #ifndef _MD5_H_
  50. #define _MD5_H_
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. #ifdef SNMP_PP_NAMESPACE
  55. namespace Snmp_pp {
  56. #endif
  57. /* POINTER defines a generic pointer type */
  58. typedef unsigned char *POINTER;
  59. /* UINT2 defines a two byte word */
  60. typedef unsigned short int UINT2;
  61. /* UINT4 defines a four byte word */
  62. typedef unsigned int UINT4; /* for alpha */
  63. /*typedef unsigned long int UINT4; */
  64. /* BYTE defines a unsigned character */
  65. typedef unsigned char BYTE;
  66. /* internal signed value */
  67. typedef signed int signeddigit;
  68. #ifndef NULL_PTR
  69. #define NULL_PTR ((POINTER)0)
  70. #endif
  71. #ifndef UNUSED_ARG
  72. #define UNUSED_ARG(x) x = *(&x);
  73. #endif
  74. #ifndef PROTOTYPES
  75. #define PROTOTYPES
  76. #endif
  77. /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
  78.  If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
  79.  returns an empty list. */
  80. #ifdef PROTOTYPES
  81. #define PROTO_LIST(list) list
  82. #else
  83. #define PROTO_LIST(list) ()
  84. #endif
  85. /* MD5 context. */
  86. typedef struct {
  87.   UINT4 state[4];                                           /* state (ABCD) */
  88.   UINT4 count[2];                /* number of bits, modulo 2^64 (lsb first) */
  89.   unsigned char buffer[64];                                 /* input buffer */
  90. } MD5_CTX;
  91. DLLOPT void  MD5Init PROTO_LIST ((MD5_CTX *));
  92. DLLOPT void  MD5Update PROTO_LIST ((MD5_CTX *, const unsigned char *, const unsigned int));
  93. DLLOPT void  MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
  94. #ifdef SNMP_PP_NAMESPACE
  95. } // end of namespace Snmp_pp
  96. #endif 
  97. #ifdef __cplusplus
  98. }
  99. #endif
  100. #endif
  101. #endif // !defined(_USE_LIBTOMCRYPT) && !defined(_USE_OPENSSL)