The only thing MD5 is good for is storing things like passwords or other information, and then you can check the MD5 hash of the input against the stored hash. For example:If CalculateMD5(password) = storedMd5 Then
CorrectPassword()
End IfIf you want to store it so it can be retreived, use some other kind of encoding or encryption.