VB.NET 获取文件MD5值

请不要使用以下方法,会计算出错!!PublicSharedFunctionMD5_(ByValfile_addressAsString)AsStringDimfstrea... 请不要使用以下方法,会计算出错!!
Public Shared Function MD5_(ByVal file_address As String) As String
Dim fstream As New FileStream(file_address, _
FileMode.Open, _
FileAccess.Read)
'Dim dataToHash(fstream.Length - 1) As Byte
Dim dataToHash(fstream.Length - 1) As Byte
fstream.Read(dataToHash, 0, fstream.Length)
fstream.Close()

Dim hashvalue As Byte() = CType(CryptoConfig.CreateFromName("MD5"), HashAlgorithm).ComputeHash(dataToHash)
Dim i As Integer
Dim result As String = ""
For i = 0 To hashvalue.Length - 1
result += Hex(hashvalue(i))
Next
If (result.Length = 32) Then
Return result
Else
Return "Error!"
End If
End Function
展开
 我来答
车中大智慧
2014-08-04 · TA获得超过135个赞
知道小有建树答主
回答量:150
采纳率:0%
帮助的人:109万
展开全部
Public Function md5(ByVal a As String) As String
Dim tempmd5 As System.Security.Cryptography.MD5 = New System.Security.Cryptography.MD5CryptoServiceProvider()
Dim bytResult() As Byte = tempmd5.ComputeHash(System.Text.Encoding.Default.GetBytes(a))
Dim strResult As String = BitConverter.ToString(bytResult)
strResult = strResult.Replace("-", "")
Return strResult
End Function
如果要计算文件的就把参数改成字节数组就可以了,然后获取文件GetBytes()传进去就可以了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式