Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
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: 14267
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 Aug 24 14:18:12 CEST 2025

Total time taken to generate the page: 0.03416 seconds