'해싱'에 해당되는 글 1건

  1. 2009.12.16 VB.NET 에서 md5 해시코드 생성

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

Posted by 철냄비짱
,