www.pudn.com > QQ2005Pwd.rar > QQmd5.asm


.586 
.model flat, stdcall 
 
include md5.inc 
 
.data 
include globals.inc 
 
.code 
 
DllEntry proc hInstDLL:DWORD, reason:DWORD, reserved1:DWORD  
    	  xor	eax,eax 
	  inc	eax 
          ret  
DllEntry endp  
 
MD5Version proc 
	lea eax, Version 
	ret 
MD5Version endp 
 
include md5.asm 
end DllEntry