科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件ASP.NET2.0中配置文件的加密与解密

ASP.NET2.0中配置文件的加密与解密

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

代码:ASP.NET2.0中配置文件的加密与解密。

作者:51CTO论坛 来源:51CTO论坛 2007年9月2日

关键字: ASP.NET 配置文件 加密 解密

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共19页)

首先添加引用: using System.Web.Configuration;

加密操作如下:

private void ProtectSection(string sectionName, string provider)

    
{

        Configuration config 
=

            WebConfigurationManager.

                OpenWebConfiguration(Request.ApplicationPath);



        ConfigurationSection section 
= config.GetSection(sectionName);



        
if (section != null && !section.SectionInformation.IsProtected)

        
{

            section.SectionInformation.ProtectSection(provider);

            config.Save();

        }


    }


解密操作如下:

 private void UnProtectSection(string sectionName)

    
{

        Configuration config 
=

            WebConfigurationManager.

                OpenWebConfiguration(Request.ApplicationPath);



        ConfigurationSection section 
= config.GetSection(sectionName);



        
if (section != null && section.SectionInformation.IsProtected)

        
{

            section.SectionInformation.UnprotectSection();

            config.Save();

        }


    }


实践:

加密前的配置文件:

<?xml version="1.0"?>

<configuration>

    
<appSettings>

  
<add key="name" value="shy520" />

  
<add key="address" value="cnblogs" />

 
</appSettings>

    
<system.web>

        
<compilation debug="true"/>

  
</system.web>

</configuration>


加密后的配置文件:

<?xml version="1.0"?>

<configuration>

    
<appSettings configProtectionProvider="DataProtectionConfigurationProvider">

  
<EncryptedData>

   
<CipherData>

    
<CipherValue>

      AQAAANCMnd8BFdERjHoAwE/Cl+s

      BAAAABi1ATlNkEUGEf0XyWGL2Xg

      QAAAACAAAAAAADZgAAqAAAABAAA

      ABIhxMWlazAntwIIpST1CDXAAAA

      AASAAACgAAAAEAAAAPz/YKYx07c

      b+h4fqdr4fkLgAAAAX1Ieyc+WSx

      AfsDW1vn2C/fXsG2TAnYeUgaCov

      8e3nGFTHHsH91gLiqKregFPYzGR

      vW1xrez/3VwOmJI9eS7EFKrcXej

      NnHL66kg2iNRk3ntLNZlZtTs3cZ

      9w63u47VKAjs6miWsGBz2GntL/9

      UGHLELigrJcr3YJ+lsjOscExQnv

      HGvA48EfxpD+tEiFBtgXeHsFkQX

      cqGySshx16vCt2GUNUC3ZmEAhBh

      UsAFkPIYqelYHd4+m9a/xPe2tqw

      GIbla1wbW2NDEfrzJPwnkfmpNqR

      hXijKImipwXbDVYy6o0UAAAAs8D

      suYNOhJ7qAjJa2c/4eUC7sks=

      
</CipherValue>

   
</CipherData>

  
</EncryptedData>

 
</appSettings>

    
<system.web>

        
<compilation debug="true"/>

  
</system.web>

</configuration>

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章