mirror of
https://gitee.com/an-tao/drogon.git
synced 2024-12-04 12:47:42 +08:00
11 lines
371 B
C++
11 lines
371 B
C++
#include "../lib/src/ssl_funcs/Md5.h"
|
|
#include <iostream>
|
|
int main()
|
|
{
|
|
std::cout << Md5Encode::encode(
|
|
"123456789012345678901234567890123456789012345"
|
|
"678901234567890123456789012345678901234567890"
|
|
"1234567890")
|
|
<< std::endl;
|
|
// The output shoud be '49CB3608E2B33FAD6B65DF8CB8F49668'
|
|
} |