U++ framework
Do not panic. Ask here before giving up.

Home » U++ Library support » U++ Library : Other (not classified elsewhere) » md5digest format
Re: md5digest format [message #10280 is a reply to message #10279] Fri, 29 June 2007 11:57 Go to previous messageGo to previous message
mirek is currently offline  mirek
Messages: 14291
Registered: November 2005
Ultimate Member
Well, not that I like that Tom's interface too much...

Anyway, what you get is MD5 as 16 binary bytes stored in String.

What you need to do is to convert them one by one to hex to get the result.

E.g. (not quite optimal speedwise):

String x = MD5Digets(...);
String r;
for(int i = 0; i < x.GetCount(); i++)
  r << FormatIntHex(x[i], 2); 


should work.
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Ultimate++ and SSH/SFTP ?
Next Topic: GetHomeDirectory() not supported on Windows?
Goto Forum:
  


Current Time: Sun Sep 13 21:59:07 GMT+2 2026

Total time taken to generate the page: 0.00774 seconds