MD5 plugin: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (File size is 10kb, not 9kb.)
m (Adding new author and category links.)
Line 1: Line 1:
{|align=right
{{PageAuthor|PerditionC}}
|<small>Author: [[{{ns:2}}:PerditionC|PerditionC]] ([[{{ns:3}}:PerditionC|talk]], [[{{ns:-1}}:Contributions/PerditionC|contrib]])</small>
 
|}
<br style="clear:both;">
== Links ==
== Links ==
<attach>Md5dll.0.3.zip</attach><br>
<attach>Md5dll.0.3.zip</attach><br>
Line 28: Line 26:
</highlight-nsis>
</highlight-nsis>


[[{{ns:14}}:Plugins]]
[[Category:Plugins]]

Revision as of 12:39, 24 June 2005

Author: PerditionC (talk, contrib)


Links

Md5dll.0.3.zip (10 KB)
Zip.gif Md5dll.0.3.zip (10 KB) (Mirror #1)

Older Versions of MD5 plugin

Description

Generates a md5 value from either a string or contents of specified file.

Original: MD5 Plugin DLL by Matthew "IGx89" Lieder, derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm

Sample Usage

OutFile "md5test.exe"
Section ""
  md5dll::GetMD5String "md5me"
  Pop $0
  DetailPrint "md5: [$0]"
 
  md5dll::GetMD5File "${NSISDIR}\makensis.exe"
  Pop $0
  DetailPrint "md5: [$0]"
SectionEnd