IcsMD5.StrMD5

From Overbyte
Revision as of 16:37, 5 May 2007 by Markus.humm (talk | contribs) (First entry)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Main page -> ICS component reference -> MD5 -> StrMD5

Definition

function StrMD5(?): string;

Description

StrMD5 is used to get the MD5 hash value of a ordinary string (e.g. a password string). You put in the string as parameter and get out the hash value without needing to initialize the MD5 hashing code since this is done internally.

Example

var s:String;

begin

 s:='hello';
 ShowMessage(StrMD5(s));

end;

Best practices

How to