zoukankan      html  css  js  c++  java
  • ASP.NET 2.0加密Web.config 配置文件

    1、打开记事本,然后将下面的代码复制到一个新文件中。
    <%@ Page Language="C#" %>
    <%
    Response.WriteSystem.Security.Principal.WindowsIdentity.GetCurrent
    ().Name);
    %
    >
    保存 my.aspx 到你的web目录 ,运行一下窗体显示 “ NT AUTHORITY\NETWORK SERVICE ”。成功!

    2、(关键一步)运行cmd,执行以下
    aspnet_regiis -pa "NetFrameworkConfigurationKey" "NT AUTHORITY\NETWORK SERVICE"
     说明:注册默认的 RsaProtectedConfigurationProvider 的RSA 密钥容器,
        NetFrameworkConfigurationKey 是 RsaProtectedConfigurationProvider 的默认provider。 成功!

    3、现在,可以加密web.config ,运行:
    加密:aspnet_regiis -pe "connectionStrings" -app "/Myweb"  
           说明:"connectionStrings" 是要加密的节,"/Myweb"是的web目录      
       解密:aspnet_regiis -pd "connectionStrings" -app "/Myweb"  
    成功!    

    4、这样就可以在程序里调用了(不用解密, 哈哈):

        ...
        string connstr= ConfigurationManager.ConnectionStrings["myConnstr"].ConnectionString.ToString();
        ...

     
    同样的,也可以用创建自己的RSA 密钥容器,如下:
      (1)、创建 "MyKeys" 密钥容器,运行:aspnet_regiis -pc "MyKeys" -exp 
    (2)、在web.config里加入以下:
    <protectedData>
    <providers>
    <add name="MyProvider"
    type="System.Configuration.RsaProtectedConfigurationProvider, System.Configuration, Version=2.0. 0.0,
    Culture=neutral, PublicKeyToken=b03f5f7f11d0a3a,
    processorArchitecture=MSIL"
    keyContainerName="MyKeys"
    useMachineContainer="true" />
    </providers>
    </protectedData>

    保存。

    (3)、授予帐户对计算机级别的 "MyKeys" RSA 密钥容器的访问权限,运行:

    aspnet_regiis -pa "MyKeys" "NT AUTHORITY\NETWORK SERVICE"
    (4)、现在,可以加密web.config ,运行:
    加密:aspnet_regiis -pe "connectionStrings" -app "/Myweb" -prov "MyProvider"
    说明:"connectionStrings" 是要加密的节,"/Myweb"是的web目录,"MyProvider" 自己密钥容器
    解密:aspnet_regiis -pd "connectionStrings" -app "/Myweb" -prov "MyProvider"
         
  • 相关阅读:
    sosreport -a --report
    笔记本用HDMI转VGA 使用双屏办公 听语音
    1080p就是1920*1080,2k就是2560*1440,4k就是3840*2160
    linux命令截取文件最后n行(所有命令)
    http://www.loongnix.org/index.php/Lbrowser
    tar解压某个目录 tar解压某个指定的文件或者文件夹
    解析CentOS 8上的Xrdp服务器安装
    CentOS、RHEL、Asianux、Neokylin、湖南麒麟、BC Linux、普华、EulerOS请参考“1.1 CentOS本地源配置”;
    Ubuntu18.04制作本地源
    js获取页面高度
  • 原文地址:https://www.cnblogs.com/Lewis/p/1130931.html
Copyright © 2011-2022 走看看