Visual Studio
VB.NET 에서 md5 해시코드 생성
철냄비짱
2009. 12. 16. 08:35
반응형
Dim Hash As Byte() = _
new System.Security.Cryptography.MD5CryptoServiceProvider().ComputeHash(arg)
Dim i As Long
Dim RetStr As String = ""
For i = 0 To UBound(Hash)
RetStr &= Format(Hash(i), "00")
Next
Return RetStr
출처 : http://blog.naver.com/gewehr43?Redirect=Log&logNo=100035915336
반응형