How to Securely Store Sensitive Data in a .NET Application?

Hugo Windsor 0 Reputation points
2023-09-23T15:55:47.0866667+00:00

I am working on a .NET application that handles sensitive user data. What are the best practices for securely storing and managing sensitive information within the application?

Developer technologies | .NET | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Krew Noah 500 Reputation points
    2023-09-23T16:44:24.9433333+00:00

    Use the .NET Secret Manager for development and Azure Key Vault for production to store sensitive data. Encrypt sensitive data at rest and in transit. Avoid storing sensitive information in code or configuration files. Implement proper authentication and authorization to restrict access to sensitive data.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.