asp.net 字符串加密解密技术

来源:爱站网时间:2019-01-08编辑:网友分享
众所周知,应用程序中的数据库操作需要连接字符串,但如果没有连接字符串,则无法完成一系列数据库操作,下文是爱站技术频道asp.net 字符串加密解密技术的介绍,希望可以帮助到有需要的你们。

众所周知,应用程序中的数据库操作需要连接字符串,但如果没有连接字符串,则无法完成一系列数据库操作,下文是爱站技术频道asp.net 字符串加密解密技术的介绍,希望可以帮助到有需要的你们。

复制代码 代码如下:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using System.Security.Cryptography;
using System.IO;
namespace www
{
public partial class jiami : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Bind();
}
private void Bind()
{
//加密
this.Title = DesEncrypt("pwd", "abcd1234");
this.Title += DesDecrypt(this.Title, "abcd1234");
Response.Write(DesDecrypt("2ikCw0TqKGo=", "abcd1234"));
}
///

/// 加密字符串
/// 注意:密钥必须为8位
///


///字符串
///密钥
///返回加密后的字符串
public string DesEncrypt(string inputString, string encryptKey)
{
byte[] byKey = null;
byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
try
{
byKey = System.Text.Encoding.UTF8.GetBytes(encryptKey.Substring(0, 8));
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
byte[] inputByteArray = Encoding.UTF8.GetBytes(inputString);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(byKey, IV), CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
return Convert.ToBase64String(ms.ToArray());
}
catch (System.Exception error)
{
//return error.Message;
return null;
}
}
///


/// 解密字符串
///


///加了密的字符串
///密钥
///返回解密后的字符串
public string DesDecrypt(string inputString, string decryptKey)
{
byte[] byKey = null;
byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
byte[] inputByteArray = new Byte[inputString.Length];
try
{
byKey = System.Text.Encoding.UTF8.GetBytes(decryptKey.Substring(0, 8));
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
inputByteArray = Convert.FromBase64String(inputString);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(byKey, IV), CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
System.Text.Encoding encoding = new System.Text.UTF8Encoding();
return encoding.GetString(ms.ToArray());
}
catch (System.Exception error)
{
//return error.Message;
return null;
}
}
}
}

上文是关于asp.net 字符串加密解密技术,相信大家都有了一定的了解,想要了解更多的技术信息,请继续关注爱站技术频道吧!

 

上一篇:.net开发人员常犯的错误

下一篇:asp.net 生成静态时的过滤viewstate的实现方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载