I have received a question asking for How I can compute a SHA1 hash.
You can use this function or similar to get 160bit hash.
Imports System.Security.Cryptography
' Computing Hash for SHA1 Function SHA1(ByVal dataStream AsString) AsByte() Dim Ascii AsNewASCIIEncoding Dim tmpsource(dataStream.Length) AsByte tmpsource = Ascii.GetBytes(dataStream) Dim sha AsNewSHA1CryptoServiceProvider() Return sha.ComputeHash(tmpsource) EndFunction