00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <cstdio>
00043 #include <fstream>
00044 #include <iostream>
00045
00046 #if defined(_WIN32) && defined(_MSC_VER)
00047 # ifdef MISC_EXPORTS
00048 # define MISC_API __declspec(dllexport)
00049 # else
00050 # define MISC_API __declspec(dllimport)
00051 # endif
00052 #else
00053 # define MISC_API
00054 #endif
00055
00056
00057 using namespace std;
00058
00059 class MISC_API _MD5 {
00060
00061 public:
00062
00063 _MD5 ();
00064 void update (unsigned char *input, unsigned int input_length);
00065 void update (istream& stream);
00066 void update (FILE *file);
00067 void update (ifstream& stream);
00068 void finalize ();
00069
00070
00071
00072 _MD5 (unsigned char *string);
00073 _MD5 (istream& stream);
00074 _MD5 (FILE *file);
00075 _MD5 (ifstream& stream);
00076
00077
00078 unsigned char *raw_digest ();
00079 char * hex_digest ();
00080 friend ostream& operator<< (ostream&, _MD5 context);
00081
00082
00083
00084 private:
00085
00086
00087 typedef unsigned int uint4;
00088 typedef unsigned short int uint2;
00089 typedef unsigned char uint1;
00090
00091
00092 uint4 state[4];
00093 uint4 count[2];
00094 uint1 buffer[64];
00095 uint1 digest[16];
00096 uint1 finalized;
00097
00098
00099 void init ();
00100 void transform (uint1 *buffer);
00101
00102
00103 static void encode (uint1 *dest, uint4 *src, uint4 length);
00104 static void decode (uint4 *dest, uint1 *src, uint4 length);
00105 static void memcpy (uint1 *dest, uint1 *src, uint4 length);
00106 static void memset (uint1 *start, uint1 val, uint4 length);
00107
00108 static inline uint4 rotate_left (uint4 x, uint4 n);
00109 static inline uint4 F (uint4 x, uint4 y, uint4 z);
00110 static inline uint4 G (uint4 x, uint4 y, uint4 z);
00111 static inline uint4 H (uint4 x, uint4 y, uint4 z);
00112 static inline uint4 I (uint4 x, uint4 y, uint4 z);
00113 static inline void FF (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
00114 uint4 s, uint4 ac);
00115 static inline void GG (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
00116 uint4 s, uint4 ac);
00117 static inline void HH (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
00118 uint4 s, uint4 ac);
00119 static inline void II (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
00120 uint4 s, uint4 ac);
00121
00122 };