程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 利用 WindowsInstaller.Installer 對象計算文件 MD5 hash 值

利用 WindowsInstaller.Installer 對象計算文件 MD5 hash 值

編輯:關於C語言

 

Option Explicit

Dim wi
Dim file
Dim file_size
DIm file_attributes
Dim file_version
Dim file_hash

Set wi = CreateObject("WindowsInstaller.Installer")
file = "C:\WINDOWS\explorer.exe"
file_size = wi.FileSize(file)
file_attributes = wi.FileAttributes(file)
file_version = wi.FileVersion(file)
file_hash = GetFileHash(file)

Set wi = Nothing

MsgBox "File: " & file & vbCrLf &_
        "Size: " & file_size & vbCrLf &_
        "Attributes: " & file_attributes & vbCrLf &_
        "Version: " & file_version & vbCrLf &_
        "MD5: " & file_hash

Function GetFileHash(file_name)
        Dim file_hash
        Dim hash_value
        Dim i

        Set file_hash = wi.FileHash(file_name, 0)

        hash_value = ""

        For i = 1 To file_hash.FieldCount
                hash_value = hash_value & BigEndianHex(file_hash.IntegerData(i))
        Next

        GetFileHash = hash_value

        Set file_hash = Nothing
End Function

Function BigEndianHex(int)
        Dim result
        Dim b1, b2, b3, b4

        result = Hex(int)
        b1 = Mid(result, 7, 2)
        b2 = Mid(result, 5, 2)
        b3 = Mid(result, 3, 2)
        b4 = Mid(result, 1, 2)

        BigEndianHex = b1 & b2 & b3 & b4
End Function

 

轉自hi.baidu.com/umu618

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved