MD5 plugin: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Added "Versions History" header.)
(Update to support Unicode NSIS)
 
(10 intermediate revisions by 4 users not shown)
Line 4: Line 4:
Download:<br>
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] (13 KB) (Mirror #1)
[[Image:Zip.gif]] [http://www.fdos.org/win32/nsis/plugins/md5dll/md5dll.0.5.zip Md5dll.0.5.zip] (21 KB) (Mirror #1)


[http://www.darklogic.org/win32/nsis/plugins/md5dll/ Older Versions of MD5 plugin]
[http://www.fdos.org/win32/nsis/plugins/md5dll/ Older Versions of MD5 plugin]
 
[http://forums.winamp.com/showthread.php?threadid=117789 Original NSIS Forums Thread (for older versions)]


== Description ==
== Description ==
Generates a md5 value from either a string or contents of specified file.
Generates a [[wikipedia:MD5|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
Original:  MD5 Plugin DLL by Matthew "IGx89" Lieder, derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm
Line 17: Line 19:
OutFile "md5test.exe"
OutFile "md5test.exe"
Section ""
Section ""
  #generate MD5sum of string
   md5dll::GetMD5String "md5me"
   md5dll::GetMD5String "md5me"
   Pop $0
   Pop $0
   DetailPrint "md5: [$0]"
   DetailPrint "md5: [$0]"


  # generate MD5sum of file
   md5dll::GetMD5File "${NSISDIR}\makensis.exe"
   md5dll::GetMD5File "${NSISDIR}\makensis.exe"
  Pop $0
  DetailPrint "md5: [$0]"
  #generate random MD5sum
  md5dll::GetMD5Random
   Pop $0
   Pop $0
   DetailPrint "md5: [$0]"
   DetailPrint "md5: [$0]"
Line 28: Line 37:


== Versions History ==
== Versions History ==
;0.5
:KJD (2010):
:*Unicode NSIS support: functionally identical to 0.4
:*Warning: passed strings and filenames must still be convertable to current code page (ASCII).
;0.4
;0.4
::KJD (2005):
:KJD (2005):
::*Added dual name to exports for backwards compatibility.
:*Added dual name to exports for backwards compatibility.
;0.3
;0.3
::Shengalts Aleksander aka Instructor (2005):
:Shengalts Aleksander aka Instructor (2005):
::*New command: "GetMD5Random".
:*New command: "GetMD5Random".
::*Changed names: "GetFileMD5" -> "GetMD5File", "GetMD5" -> "GetMD5String".
:*Changed names: "GetFileMD5" -> "GetMD5File", "GetMD5" -> "GetMD5String".
::*Fixed: string length error.
:*Fixed: string length error.
;0.2
;0.2
::Davy Durham (2004):
:Davy Durham (2004):
::*MD5.cpp fix (correct for loop used to replace memset, exceeded bounds).
:*MD5.cpp fix (correct for loop used to replace memset, exceeded bounds).
;0.1
;0.1
::KJD (2004):
:KJD (2004):
::*Modified to reduce size and use exdll.h (reduced to about 6KB uncompressed, by removing CRTL dependency).
:*Modified to reduce size and use exdll.h (reduced to about 6KB uncompressed, by removing CRTL dependency).
;Original
;Original
::Matthew "IGx89" Lieder:
:Matthew "IGx89" Lieder:
::*Original plugin Author.
:*Original plugin Author.
::Sunjammer (12th May 2002):
:Sunjammer (12th May 2002):
::*Original usage notes and example script.
:*Original usage notes and example script.


[[Category:Plugins]]
[[Category:Plugins]]

Latest revision as of 20:42, 23 January 2010

Author: PerditionC (talk, contrib)


Links

Download:
Md5dll.zip (21 KB)
Zip.gif Md5dll.0.5.zip (21 KB) (Mirror #1)

Older Versions of MD5 plugin

Original NSIS Forums Thread (for older versions)

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 ""
  #generate MD5sum of string
  md5dll::GetMD5String "md5me"
  Pop $0
  DetailPrint "md5: [$0]"
 
  # generate MD5sum of file
  md5dll::GetMD5File "${NSISDIR}\makensis.exe"
  Pop $0
  DetailPrint "md5: [$0]"
 
  #generate random MD5sum
  md5dll::GetMD5Random
  Pop $0
  DetailPrint "md5: [$0]"
SectionEnd

Versions History

0.5
KJD (2010):
  • Unicode NSIS support: functionally identical to 0.4
  • Warning: passed strings and filenames must still be convertable to current code page (ASCII).
0.4
KJD (2005):
  • Added dual name to exports for backwards compatibility.
0.3
Shengalts Aleksander aka Instructor (2005):
  • New command: "GetMD5Random".
  • Changed names: "GetFileMD5" -> "GetMD5File", "GetMD5" -> "GetMD5String".
  • Fixed: string length error.
0.2
Davy Durham (2004):
  • MD5.cpp fix (correct for loop used to replace memset, exceeded bounds).
0.1
KJD (2004):
  • Modified to reduce size and use exdll.h (reduced to about 6KB uncompressed, by removing CRTL dependency).
Original
Matthew "IGx89" Lieder:
  • Original plugin Author.
Sunjammer (12th May 2002):
  • Original usage notes and example script.