我有加密值,我尝试使用asp_regiis.exe
解密它。
<configuration>
<connectionStrings
configProtectionProvider="DataProtectionConfigurationProvider">
<EncryptedData>
<CipherData>
<CipherValue>AQAAANCMnd8BFdERjHoAwE/Cl....fK39sbTH</CipherValue>
</CipherData>
</EncryptedData>
</connectionStrings>
</configuration>
当我运行此命令时:
aspnet_regiis.exe -pdf "connectionStrings" "C:\Users\Test"
我有这个错误:
解密配置部分......
使用提供程序'DataProtectionConfigurationProvider'无法解密。来自提供商的错误消息:
Data at the root level is invalid. Line 1, position 1. Failed!
这有什么不妥?我需要找到解密的值。 请指教。