MaxK123
MaxK123

Reputation: 450

How do I store passwords to my mailfunciton in ASP.NET Core 3.1

I made a website out of .NET Framework recently and I could put my passwords in a web.config file. But now I have updated myself and is currently using .NET Core 3.1. Where can I store my passwords and/or do I need to encrypt them? Thanks beforehand!

Best regards Max

Upvotes: 1

Views: 502

Answers (1)

DotNetDublin
DotNetDublin

Reputation: 798

Presuming you are referring to passwords relating to application configuration you can refer to the below options.

https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-3.1

Upvotes: 1

Related Questions