12345678910111213141516171819202122232425262728293031323334 |
- #include <gtest/gtest.h>
- #include <iostream>
- #include <errno.h>
- #include <string.h>
- #include "addon/md5.hpp"
- TEST(MD5, test)
- {
- std::istringstream empty("");
- ASSERT_EQ("d41d8cd98f00b204e9800998ecf8427e", MD5(empty).hex_digest());
- std::istringstream helloworld("HelloWorld");
- ASSERT_EQ("68e109f0f40ca72a15e05cc22786f8e6", MD5(helloworld).hex_digest());
- }
|