Go to the documentation of this file.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 #ifndef MD5CheckSum_INCLUDE_ONCE
00033 #define MD5CheckSum_INCLUDE_ONCE
00034
00035 #include <vlCore/link_config.hpp>
00036 #include <string>
00037 #include <string.h>
00038
00039 namespace vl
00040 {
00041 class VirtualFile;
00042
00046 class VLCORE_EXPORT MD5CheckSum
00047 {
00048 public:
00049 MD5CheckSum() { memset(mMD5, 0, 16); }
00050
00051 const unsigned char* md5() const { return mMD5; }
00052
00053 std::string toStdString() const;
00054
00055 void compute(void* buffer, int len);
00056
00057 void compute(VirtualFile* file);
00058
00059 bool operator==(const MD5CheckSum& other) const { return memcmp(mMD5, other.mMD5, 16) == 0; }
00060
00061 bool operator!=(const MD5CheckSum& other) const { return memcmp(mMD5, other.mMD5, 16) != 0; }
00062
00063 bool operator< (const MD5CheckSum& other) const { return memcmp(mMD5, other.mMD5, 16) < 0; }
00064
00065 protected:
00066 unsigned char mMD5[16];
00067 };
00068 }
00069
00070 #endif