Advertisement
Drainedsoul

md5.h

Jan 24th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #ifndef RLEAHY_MD5
  2.  
  3. #define RLEAHY_MD5
  4.  
  5.  
  6. #include <dll_export.h>
  7.  
  8.  
  9. namespace Hash {
  10.  
  11.  
  12.     struct DLL_EXPORT MD5Result {
  13.  
  14.  
  15.         public:
  16.        
  17.        
  18.             MD5Result ();
  19.        
  20.        
  21.             unsigned int High;
  22.             unsigned int HighMid;
  23.             unsigned int LowMid;
  24.             unsigned int Low;
  25.  
  26.  
  27.     };
  28.  
  29.    
  30.     DLL_EXPORT MD5Result MD5 (const void *, int);
  31.     DLL_EXPORT void MD5Block (const void *, MD5Result *);
  32.    
  33.  
  34. }
  35.  
  36.  
  37. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement