Avatar of Thomasian
Thomasian
Flag for Philippines

asked on 

MD5 Hash

Why is it that the last 2 bytes of the hash value are always "="?

This is how I tested it:
Dim MD5 As New System.Security.Cryptography.MD5CryptoServiceProvider
Console.WriteLine(Convert.ToBase64String(MD5.ComputeHash(System.Text.ASCIIEncoding.ASCII.GetBytes("test"))))

Am I doing something wrong?
.NET ProgrammingVisual Basic.NETEncryption

Avatar of undefined
Last Comment
Thomasian

8/22/2022 - Mon