zoukankan      html  css  js  c++  java
  • asp.net web.config加密和解密

    • 摘要:本文介绍asp.net web.config加密和解密,并提供简单的示例代码供参考。
    • -
    web.config文件时一个XML文本文件,用来存储ASP.NET中WEB应用程序的配置信息。Web应用开发者往往会将应用程序的一些关键信息配置在web.config文件中,例如:数据库连接字符串。然而,web.config文件也存在一定的安全性隐患,这种以明码方式存储的关键信息,可能会成为别有用心人的突破口,造成不必要的损失。目前,解决这个问题最好的方法是将web.config文件的字符串进行加密,当要修改信息时再进行解密。下面我来介绍一种比较常用的web.config加密和解密方法。
    实现过程。
    (1)首先我们在页面中添加两个按钮,在加密按钮的单击事件中编写加密代码。(这里需要引用using System.Web.Configuration;命名空间)
    // 打开该应用程序中的配置文件
    Configuration config = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath);
    //在打开的配置文件中找到指定的节
    ConfigurationSection section = config.GetSection("appSettings");
    if (section !=null&&!section.SectionInformation.IsProtected)
    {
    section.SectionInformation.ProtectSection(
    "RsaProtectedConfigurationProvider");
    config.Save();
    Response.Write(
    "<script>alert('加密成功!');</script>");
    }
    (2)在解密按钮的单击事件中编写解密代码。
    Configuration config = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath);
    ConfigurationSection section
    = config.GetSection("appSettings");
    if (section !=null&& section.SectionInformation.IsProtected)
    {
    section.SectionInformation.UnprotectSection();
    config.Save();
    Response.Write(
    "<script>alert('解密成功');</script>");
    }

    效果图如下:

    加密前:

    加密后:

    解密后:

  • 相关阅读:
    状态压缩 + 暴力 HDOJ 4770 Lights Against Dudely
    简单几何(推公式) UVA 11646 Athletics Track
    简单几何(四边形形状) UVA 11800 Determine the Shape
    简单几何(求交点) UVA 11437 Triangle Fun
    计算几何模板
    简单几何(相对运动距离最值) UVA 11796 Dog Distance
    简单几何(求划分区域) LA 3263 That Nice Euler Circuit
    覆盖的面积 HDU
    Desert King 最小比率生成树 (好题)
    约会安排 (区间合并)毒瘤题
  • 原文地址:https://www.cnblogs.com/Tally/p/2684776.html
Copyright © 2011-2022 走看看