Difference between revisions of "MD5"
Jump to navigation
Jump to search
Markus.humm (talk | contribs) (First entry) |
Markus.humm (talk | contribs) |
||
Line 13: | Line 13: | ||
{| | {| | ||
− | | width="90" valign="top" | [[ | + | | width="90" valign="top" | [[icsMD5.MD5Init | MD5Init]] |||| initializes a MD5 context record |
|- | |- | ||
− | | valign="top" | [[ | + | | valign="top" | [[icsMD5.MD5Update | MD5Update]] |||| ? |
+ | |- | ||
+ | | valign="top" | [[icsMD5.MD5Transform | MD5Transform]] |||| ? | ||
+ | |- | ||
+ | | valign="top" | [[icsMD5.MD5UpdateBuffer | MD5UpdateBuffer]] |||| ? | ||
+ | |- | ||
+ | | valign="top" | [[icsMD5.MD5Final | MD5Final]] |||| ? | ||
+ | |- | ||
+ | | valign="top" | [[icsMD5.GetMD5 | GetMD5]] |||| Calculates the MD5 sum of a given buffer | ||
+ | |- | ||
+ | | valign="top" | [[icsMD5.StrMD5 | StrMD5]] |||| Calculates the MD5 sum of a given String | ||
+ | |- | ||
+ | | valign="top" | [[icsMD5.FileMD5 | FileMD5]] |||| Calculates the MD5 sum of a given file | ||
|} | |} | ||
Revision as of 20:08, 29 April 2007
Main page -> ICS component reference
Overview
unit | icsmd5.pas | |
inheritance | none |
This unit implements the MD5 hash algorithm, which is a implroved descendant from the insecure MD4 algorithm.
Functions
MD5Init | initializes a MD5 context record | |
MD5Update | ? | |
MD5Transform | ? | |
MD5UpdateBuffer | ? | |
MD5Final | ? | |
GetMD5 | Calculates the MD5 sum of a given buffer | |
StrMD5 | Calculates the MD5 sum of a given String | |
FileMD5 | Calculates the MD5 sum of a given file |
How to