Difference between revisions of "IcsMD5.StrMD5"
Jump to navigation
Jump to search
Markus.humm (talk | contribs) (First entry) |
Markus.humm (talk | contribs) (link fixed) |
||
Line 1: | Line 1: | ||
− | [[Main_Page | Main page]] -> [[ICS_Components_Reference | ICS component reference]] -> [[MD5]] -> [[ | + | [[Main_Page | Main page]] -> [[ICS_Components_Reference | ICS component reference]] -> [[MD5]] -> [[IcsMD5.StrMD5 | StrMD5]] |
== Definition == | == Definition == |
Revision as of 16:38, 5 May 2007
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;