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

P2P编程

开发平台:

Visual C++

  1. // MD5.CC - source code for the C++/object oriented translation and 
  2. //          modification of MD5.
  3. // Translation and modification (c) 1995 by Mordechai T. Abzug 
  4. // This translation/ modification is provided "as is," without express or 
  5. // implied warranty of any kind.
  6. // The translator/ modifier does not claim (1) that MD5 will do what you think 
  7. // it does; (2) that this translation/ modification is accurate; or (3) that 
  8. // this software is "merchantible."  (Language for this disclaimer partially 
  9. // copied from the disclaimer below).
  10. /* based on:
  11.    MD5.H - header file for MD5C.C
  12.    MDDRIVER.C - test driver for MD2, MD4 and MD5
  13.    Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  14. rights reserved.
  15. License to copy and use this software is granted provided that it
  16. is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  17. Algorithm" in all material mentioning or referencing this software
  18. or this function.
  19. License is also granted to make and use derivative works provided
  20. that such works are identified as "derived from the RSA Data
  21. Security, Inc. MD5 Message-Digest Algorithm" in all material
  22. mentioning or referencing the derived work.
  23. RSA Data Security, Inc. makes no representations concerning either
  24. the merchantability of this software or the suitability of this
  25. software for any particular purpose. It is provided "as is"
  26. without express or implied warranty of any kind.
  27. These notices must be retained in any copies of any part of this
  28. documentation and/or software.
  29. */
  30. #ifndef _MD5_H__
  31. #define _MD5_H__
  32. class MD5 {
  33. public:
  34. // methods for controlled operation:
  35.   MD5              ();  // simple initializer
  36.   void  update     (const unsigned char *input, unsigned int input_length);
  37.   void  update     (FILE *file);
  38.   void  finalize   ();
  39. // constructors for special circumstances.  All these constructors finalize
  40. // the MD5 context.
  41.   MD5              (const unsigned char *string, unsigned int len); // digest string, finalize
  42.   MD5              (FILE *file);            // digest file, close, finalize
  43. // methods to acquire finalized result
  44.   unsigned char    *raw_digest ();  // digest as a 16-byte binary array
  45.   char *            hex_digest ();  // digest as a 33-byte ascii-hex string
  46. private:
  47. // first, some types:
  48.   typedef unsigned       int uint4; // assumes integer is 4 words long
  49.   typedef unsigned short int uint2; // assumes short integer is 2 words long
  50.   typedef unsigned      char uint1; // assumes char is 1 word long
  51. // next, the private data:
  52.   uint4 state[4];
  53.   uint4 count[2];     // number of *bits*, mod 2^64
  54.   uint1 buffer[64];   // input buffer
  55.   uint1 digest[16];
  56.   uint1 finalized;
  57. // last, the private methods, mostly static:
  58.   void init             ();               // called by all constructors
  59.   void transform        (const uint1 *buffer);  // does the real update work.  Note 
  60.                                           // that length is implied to be 64.
  61.   static void encode    (uint1 *dest, uint4 *src, uint4 length);
  62.   static void decode    (uint4 *dest, const uint1 *src, uint4 length);
  63.   static void memcpy    (uint1 *dest, const uint1 *src, uint4 length);
  64.   static void memset    (uint1 *start, uint1 val, uint4 length);
  65.   static inline uint4  rotate_left (uint4 x, uint4 n);
  66.   static inline uint4  F           (uint4 x, uint4 y, uint4 z);
  67.   static inline uint4  G           (uint4 x, uint4 y, uint4 z);
  68.   static inline uint4  H           (uint4 x, uint4 y, uint4 z);
  69.   static inline uint4  I           (uint4 x, uint4 y, uint4 z);
  70.   static inline void   FF  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  71.     uint4 s, uint4 ac);
  72.   static inline void   GG  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  73.     uint4 s, uint4 ac);
  74.   static inline void   HH  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  75.     uint4 s, uint4 ac);
  76.   static inline void   II  (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x, 
  77.     uint4 s, uint4 ac);
  78. };
  79. #endif