ultimatepp/archive/uppsrc/Web/md5.cpp
cxl 389f16577e upp.src: reorganize (TCore... moved to archive)
git-svn-id: svn://ultimatepp.org/upp/trunk@14426 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-05-03 08:26:26 +00:00

12 lines
184 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);
}
}