I use the following code to encrypt the data to MD5:
How is it possible to decrypt the MD5-hash?
Thanks and rgds
B4X:
Sub btnMd5_Click
Dim data(0) As Byte
Dim md As MessageDigest
msg = "Teststring"
data = Bconv.StringToBytes(msg, "UTF8")
data = md.GetMessageDigest(data, "MD5")
Msgbox(Bconv.HexFromBytes(data), "MD5 digest")
End Sub
How is it possible to decrypt the MD5-hash?
Thanks and rgds