C#中用MD5实现数据加密
来源:不详 责任编辑:栏目编辑 发表时间:2013-07-01 08:58 点击:次
关键字:C#中用MD5实现数据加密
C#中用MD5实现数据加密
using System.Security.Cryptography;
using System.Text;
private void button1_Click(object sender, System.EventArgs e)
{
byte[] bt=UTF8Encoding.UTF8.GetBytes(textBox1.Text );//UTF8需要对Text的引用
MD5CryptoServiceProvider objMD5;
objMD5=new MD5CryptoServiceProvider ();
byte[] output=objMD5.ComputeHash (bt);
textBox2.Text =BitConverter.ToString (output);
}
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>