MD5
Gönderilme zamanı: 25 Nis 2021 13:18
Tools> GeneralTool.cs
Kod: Tümünü seç
public static string getMD5(string _text)
{
using (MD5 md5 = MD5.Create())
{
byte[] hash = md5.ComputeHash(Encoding.UTF8.GetBytes(_text));
return BitConverter.ToString(hash).Replace("-", "");
}
}