本文介绍了使用Azure Key Vault管理Web应用程序的应用程序凭据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们已将Web应用程序迁移到Azure VM.我们的应用程序中使用的应用程序凭据以加密格式存储在web.config文件中.我们在应用程序中使用的是CryptographerProvider.RijndaelCryptographer.

We have migrated our web applications to Azure VMs. The application credentials used in our application are stored in an encrypted format in the web.config file. We are using CryptographerProvider.RijndaelCryptographer in our application.

如果我们采用相同的方法还是应该使用Azure Key Vault存储密钥而不是将其存储在应用程序文件中,是否有任何问题.是否有任何参考链接可将Azure密钥保险库用于Web应用程序?

Is there any concern if we follow the same approach or should use Azure Key Vault to store the keys instead of storing it in the application files. Is there any reference links to use Azure key vault for web applications?

或者还有其他用于加密/解密的方法吗?

Or is there any other approach for encryption/decryption?

推荐答案

这是指南以及一些示例对此进行了详细说明. 

Here is a guide which explains this in detail along with some samples. 


这篇关于使用Azure Key Vault管理Web应用程序的应用程序凭据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-16 00:32