* creates a MD5 hash from * "text" and returns it as * string */
| 89 | * string |
| 90 | */ |
| 91 | std::string md5wrapper::getHashFromString(std::string text) |
| 92 | { |
| 93 | return this->hashit((unsigned char*)text.data(), text.length()); |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * creates a MD5 hash from |
no test coverage detected