Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
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;
}