-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

ASP.NET Core 5 Secure Coding Cookbook
By :

There is no question that part of the ASP.NET Core secure coding technique should involve protecting your application's sensitive data at rest. Personally identifiable information (PII), data classified as confidential, and enumerable keys and IDs should be encrypted. ASP.NET Core made it easy for developers to achieve this by developing a data protection stack in its framework that provides a simplified API.
In this recipe, you will learn how to use the Data Protection API (DPAPI) to protect parts of your ASP.NET Core web application that expose sensitive data.
Using Visual Studio Code, open the sample Online Banking app folder at \Chapter01\data-protection\before\OnlineBankingApp
.
Let's take a look at the steps for this recipe:
code .
Pages\Customers...