md5.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:5k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. // MD5.CC - source code for the C++/object oriented translation and 
  20. //          modification of MD5.
  21. // Translation and modification (c) 1995 by Mordechai T. Abzug 
  22. // This translation/ modification is provided "as is," without express or 
  23. // implied warranty of any kind.
  24. // The translator/ modifier does not claim (1) that MD5 will do what you think 
  25. // it does; (2) that this translation/ modification is accurate; or (3) that 
  26. // this software is "merchantible."  (Language for this disclaimer partially 
  27. // copied from the disclaimer below).
  28. /* based on:
  29.    MD5.H - header file for MD5C.C
  30.    MDDRIVER.C - test driver for MD2, MD4 and MD5
  31.    Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  32. 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. #ifndef _MD5_H__
  49. #define _MD5_H__
  50. class MD5 {
  51. public:
  52. // methods for controlled operation:
  53.   MD5              ();  // simple initializer
  54.   void  update     (unsigned char *input, unsigned int input_length);
  55.   void  finalize   ();
  56. // constructors for special circumstances.  All these constructors finalize
  57. // the MD5 context.
  58.   MD5              (unsigned char *string, unsigned int len); // digest string, finalize
  59. // methods to acquire finalized result
  60.   unsigned char    *raw_digest ();  // digest as a 16-byte binary array
  61.   char *            hex_digest ();  // digest as a 33-byte ascii-hex string
  62. private:
  63. // first, some types:
  64.   typedef unsigned       int uint4; // assumes integer is 4 words long
  65.   typedef unsigned short int uint2; // assumes short integer is 2 words long
  66.   typedef unsigned      char uint1; // assumes char is 1 word long
  67. // next, the private data:
  68.   uint4 state[4];
  69.   uint4 count[2];     // number of *bits*, mod 2^64
  70.   uint1 buffer[64];   // input buffer
  71.   uint1 digest[16];
  72.   uint1 finalized;
  73. // last, the private methods, mostly static:
  74.   void init             ();               // called by all constructors
  75.   void transform        (uint1 *buffer);  // does the real update work.  Note 
  76.                                           // that length is implied to be 64.
  77.   static void encode    (uint1 *dest, uint4 *src, uint4 length);
  78.   static void decode    (uint4 *dest, uint1 *src, uint4 length);
  79.   static void memcpy    (uint1 *dest, uint1 *src, uint4 length);
  80.   static void memset    (uint1 *start, uint1 val, uint4 length);
  81.   static inline uint4  rotate_left (uint4 x, uint4 n);
  82.   static inline uint4  F           (uint4 x, uint4 y, uint4 z);
  83.   static inline uint4  G           (uint4 x, uint4 y, uint4 z);
  84.   static inline uint4  H           (uint4 x, uint4 y, uint4 z);
  85.   static inline uint4  I           (uint4 x, uint4 y, uint4 z);
  86.   static inline void   FF  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  87.           uint4 s, uint4 ac);
  88.   static inline void   GG  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  89.           uint4 s, uint4 ac);
  90.   static inline void   HH  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  91.           uint4 s, uint4 ac);
  92.   static inline void   II  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  93.           uint4 s, uint4 ac);
  94. };
  95. #endif