mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
12 lines
186 B
C++
12 lines
186 B
C++
#include "Web.h"
|
|
|
|
NAMESPACE_UPP
|
|
|
|
String MD5Digest(const char *text, int length)
|
|
{
|
|
unsigned char digest[16];
|
|
MD5(digest, text, length);
|
|
return String(digest, 16);
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|