MD5 plugin: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated download link.) |
m (Again, I forgot the <br>.) |
||
Line 2: | Line 2: | ||
== Links == | == Links == | ||
Download: | Download:<br> | ||
<attach>Md5dll.zip</attach><br> | <attach>Md5dll.zip</attach><br> | ||
[[Image:Zip.gif]] [http://www.darklogic.org/win32/nsis/plugins/md5dll/md5dll.0.4.zip Md5dll.0.4.zip] (14 KB) (Mirror #1) | [[Image:Zip.gif]] [http://www.darklogic.org/win32/nsis/plugins/md5dll/md5dll.0.4.zip Md5dll.0.4.zip] (14 KB) (Mirror #1) |
Revision as of 17:23, 3 July 2005
Author: PerditionC (talk, contrib) |
Links
Download:
Md5dll.zip (21 KB)
Md5dll.0.4.zip (14 KB) (Mirror #1)
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