MD5 plugin: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Updated author and download links, and changed format of some pages.)
Line 1: Line 1:
== Links ==
== Links ==
Get reduced size one here:  
<attach>Md5dll.0.2.zip</attach><br>
http://www.darklogic.org/win32/nsis/plugins/md5dll/md5dll.0.2.zip
[[Image:Zip.gif]] [http://www.darklogic.org/win32/nsis/plugins/md5dll/md5dll.0.2.zip Md5dll.0.2.zip] (9 KB) (Mirror #1)


== Description ==
== Description ==
Line 7: Line 7:
Original:  MD5 Plugin DLL by Matthew "IGx89" Lieder,
Original:  MD5 Plugin DLL by Matthew "IGx89" Lieder,
Derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm
Derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm
The original is the one in NSIS archives, the one linked below has identical
functionality, but is reduced to about 4KB upx'd (~6KB uncompressed), by
removing CRTL dependency.


== Sample Usage ==
== Sample Usage ==
(from Sunjammer for original md5 plugin):
<highlight-nsis>
<highlight-nsis>
OutFile "md5test.exe"
OutFile "md5test.exe"
Line 28: Line 22:
</highlight-nsis>
</highlight-nsis>


Page author: PerditionC
Page author: [[User:PerditionC|PerditionC]]

Revision as of 12:40, 23 April 2005

Links

Md5dll.0.2.zip not found
Zip.gif Md5dll.0.2.zip (9 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::GetMD5 "md5me"
  Pop $0
  DetailPrint "md5: [$0]"
 
  md5dll::GetFileMD5 "${NSISDIR}\makensis.exe"
  Pop $0
  DetailPrint "md5: [$0]"
SectionEnd

Page author: PerditionC