Imports System.Security.Cryptography
Dim md5Hasher As MD5CryptoServiceProvider = New MD5CryptoServiceProvider()
Dim hashedBytes As Byte()
hashedBytes = md5Hasher.ComputeHash(Encoding.UTF8.GetBytes("password"))
Console.WriteLine(Convert.ToBase64String(hashedBytes))