小编chr*_*dot的帖子

.Net core 3: manually adding framework dependencies

Since the release of version 3.0, it is now possible to write WPF applications in .net core, and this is really nice!

On the other hand, on .net core, the dependency system now relies on full framework and no more and multiple nuget dependencies. This is not a problem until you want to mix for instance WPF and ASP.net core in the same application (I have a case where I want a UI with a webserver handling websockets endpoints).

When …

wpf .net-core asp.net-core

8
推荐指数
1
解决办法
2749
查看次数

本地应用程序中的秘密管理

我正在开发的 .net core 服务器代码将同时托管在云基础设施和本地。

有很多选项可以处理秘密管理(连接字符串等...):

  • 大型云提供商正在提供专用的秘密管理解决方案(AWS KMSAzure Key Vault等)。
  • 流行的编排器也提供自己的服务(例如 Kubernetes Secrets)
  • 在开发过程中,我们有专门的秘密管理工具和流程(这很好)

但是如何在本地托管上安全地存储秘密?我怀疑将其设置为简单的变量环境是否被认为是安全的?

security asp.net-core asp.net-core-security websecurity

5
推荐指数
1
解决办法
3938
查看次数