Gibt es einen einfache möglichkeit einen string in eine MD5 verschlüßelung umzuwandeln?
welche Sprache den überhaupt?
Gruß Ky
C#
C# ----------
ich hab des so:
public static string md5(string m_value)
{
System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] m_key = System.Text.Encoding.ASCII.GetBytes("MasterKeyFor9111" + m_value);
m_key = x.ComputeHash(m_key);
string m_md5 = "";
for (int i = 0; i < m_key.Length; i++)
{
m_md5 += m_key[i].ToString("x2").ToLower();
}
return m_md5;
}
Gruß KY
<= C++ Lösung