怎样在ASP.NET中用MD5对数据加密,麻烦些详细点谢谢
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在ASP.NET中用MD5对数据加密,麻烦些详细点谢谢相关的知识,希望对你有一定的参考价值。
using System;using System.Collections.Generic;
using System.Text;
using System.Web;
/// <summary>
/// 使用MD5算法加密(不可逆,无法解密)
/// 把此方法加入CS页面然后直接调用就行了
/// </summary>
/// <param name="password">明文</param>
/// <returns>密文</returns>
public static string EncryptionMD5(string password)
System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create();
byte[] bytes = new byte[16];
System.Text.ASCIIEncoding asc = new System.Text.ASCIIEncoding();
bytes = md5.ComputeHash(asc.GetBytes(password));
return Convert.ToBase64String(bytes);
/// <summary>
/// 使用SHA1算法求加密(不可逆,无法解密)
/// </summary>
/// <param name="text">明文</param>
/// <returns>密文</returns>
public static string EncryptionSHA1(string text)
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(text,"SHA1");
参考技术A 一行搞定:
string pwd = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("要转换的字符串", "MD5");
pwd通过这方法即可加密成MD5字符串
ASP.NET中怎样对DataTable中某一行和某一列进行操作?
我指的是增删改一个数据源,就是一个类似购物车这样的内存DATATABLE.对内存数据进行增删改,因为我只对数据库增删改过,能把代码写多点吗?感谢
参考技术A .rows[index].cell[index] 自己动手,丰衣足食!以上是关于怎样在ASP.NET中用MD5对数据加密,麻烦些详细点谢谢的主要内容,如果未能解决你的问题,请参考以下文章