mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
15 lines
267 B
C++
15 lines
267 B
C++
#include <Core/Core.h>
|
|
#include <Web/Web.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
String x = MD5Digest("alajos");
|
|
LOGHEXDUMP(x, x.GetCount());
|
|
String r;
|
|
for(int i = 0; i < x.GetCount(); i++) {
|
|
r << FormatIntHex((byte)x[i], 2);
|
|
}
|
|
DUMP(r);
|
|
}
|