本文介绍了解密加密的连接字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我在加密的配置文件中有以下代码:

< connectionstrings configprotectionprovider ="RsaProtectedConfigurationProvider">
< encrypteddata type ="http://www.w3.org/2001/04/xmlenc#Element">
xmlns ="http://www.w3.org/2001/04/xmlenc#">
< encryptionmethod algorithm ="http://www.w3.org/2001/04/xmlenc#tripledes-cbc">
< keyinfo xmlns ="http://www.w3.org/2000/09/xmldsig#">
< encryptedkey xmlns ="http://www.w3.org/2001/04/xmlenc#">
< encryptionmethod algorithm ="http://www.w3.org/2001/04/xmlenc#rsa-1_5">
< keyinfo xmlns ="http://www.w3.org/2000/09/xmldsig#">
< keyname> Rsa密钥

< cipherdata>
<密码值> G7PVGIQ5088SpJ9Z14NRx59DBxSXDVvWyRWE7X6Msb48T9zT3gNizWnzpWIvDrmSY3 + o58 =



< cipherdata>
<密码值> L5ON3uqf8Y1y3SgEmpkR + aoeQFe1OIaieOVuaOqtC1JpQkz4g9hgnjbdxiMvcFEGVUijP01xeQ =




我需要解密.请提出解决方案.

感谢

Hi All,

I have the below code in config file which is encrypted:

<connectionstrings configprotectionprovider="RsaProtectedConfigurationProvider">
<encrypteddata type="http://www.w3.org/2001/04/xmlenc#Element">
xmlns="http://www.w3.org/2001/04/xmlenc#">
<encryptionmethod algorithm="http://www.w3.org/2001/04/xmlenc#tripledes-cbc">
<keyinfo xmlns="http://www.w3.org/2000/09/xmldsig#">
<encryptedkey xmlns="http://www.w3.org/2001/04/xmlenc#">
<encryptionmethod algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5">
<keyinfo xmlns="http://www.w3.org/2000/09/xmldsig#">
<keyname>Rsa Key

<cipherdata>
<ciphervalue>G7PVGIQ5088SpJ9Z14NRx59DBxSXDVvWyRWE7X6Msb48T9zT3gNizWnzpWIvDrmSY3+o58=



<cipherdata>
<ciphervalue>L5ON3uqf8Y1y3SgEmpkR+aoeQFe1OIaieOVuaOqtC1JpQkz4g9hgnjbdxiMvcFEGVUijP01xeQ=




I need to decrypt this.Please suggest solution.

Thanks

推荐答案


这篇关于解密加密的连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 20:55