mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
12 lines
172 B
C++
12 lines
172 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);
|
|
}
|
|
|
|
}
|