Asp.net C#’ta md5 ile şifreleme

Arif Ceylan/ Mart 14, 2012/ VS 2010 Asp.net ve C#/ 0 comments

String bir değeri md5 ile şifrelemek için aşağıdaki fonksiyonu kullanabiliriz.

Tabi önce formumuza gerekli namespaceleri ekleyelim. Ekleyeceğimiz namespaceler;

using System.Text;

using System.Security.Cryptography;

Örnek amaçlı formumuza textbox, button, label ekleyelim.

Fonksiyonumuz;

string donusturmd5(string ClearText)


{


byte[] ByteData = Encoding.ASCII.GetBytes(ClearText);


MD5 oMd5 = MD5.Create();


byte[] HashData = oMd5.ComputeHash(ByteData);


StringBuilder oSb = new StringBuilder();


for (int x = 0; x < HashData.Length; x++)


{


oSb.Append(HashData[x].ToString("x2"));


}


return oSb.ToString();


}

Button1in click olayında aşağıdaki gibi kullanıyoruz.

Label1.Text = donusturmd5(txtsifre.Text);

Sonuç:

 

Gelen arama terimleri:

  • asp net md5 şifreleme
Share this Post

Leave a Comment

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>
*
*