Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef MD5WRAPPER_H
00015 #define MD5WRAPPER_H
00016
00017
00018 #include <string>
00019
00020
00021
00022 #include "SparseVector.h"
00023
00024 class MD5;
00025
00026 class md5wrapper
00027 {
00028 private:
00029 MD5 *md5;
00030
00031
00032
00033
00034
00035 std::string hashit(std::string text);
00036
00037
00038
00039
00040
00041 std::string convToString(unsigned char *bytes);
00042 public:
00043
00044 md5wrapper();
00045
00046
00047 ~md5wrapper();
00048
00049
00050
00051
00052
00053
00054 std::string getHashFromString(std::string text);
00055
00056
00057
00058
00059
00060
00061
00062 };
00063
00064
00065
00066 #endif
00067
00068
00069
00070