Επεξεργασία

ASP.NET Core Data Protection Overview

ASP.NET Core provides a cryptographic API to protect data, including key management and rotation.

Web apps often need to store sensitive data. The Windows data protection API (DPAPI) isn't intended for use in web apps.

The ASP.NET Core data protection stack was designed to:

  • Provide a built in solution for most Web scenarios.
  • Address many of the deficiencies of the previous encryption system.
  • Serve as the replacement for the <machineKey> element in ASP.NET 1.x - 4.x.

Problem statement

I need to persist trusted information for later retrieval, but I don't trust the persistence mechanism. In web terms, this might be written as I need to round-trip trusted state via an untrusted client.

Authenticity, integrity, and tamper-proofing is a requirement. The canonical example of this is an authentication cookie or bearer token. The server generates an I am Groot and have xyz permissions token and sends it to the client. The client presents that token back to the server, but the server needs some kind of assurance that the client hasn't forged the token.

Confidentiality is a requirement. Since the persisted state is trusted by the server, this state could contain information that shouldn't be disclosed to an untrusted client. For example:

  • A file path.
  • A permission.
  • A handle or other indirect reference.
  • Some server-specific data.

Isolation is a requirement. Since modern apps are componentized, individual components want to take advantage of this system without regard to other components in the system. For instance, consider a bearer token component using this stack. It should operate without any interference, for example, from an anti-CSRF mechanism also using the same stack.

Some common assumptions can narrow the scope of requirements:

  • All services operating within the cryptosystem are equally trusted.
  • The data doesn't need to be generated or consumed outside of the services under our direct control.
  • Operations must be fast since each request to the web service might go through the cryptosystem one or more times. The speed requirement makes symmetric cryptography ideal. Asymmetric cryptography isn't used until it's required.

Design philosophy

ASP.NET Core data protection is an easy to use data protection stack. It's based on the following principles:

  • Ease of configuration. The system strives for zero configuration. In situations where developers need to configure a specific aspect, such as the key repository, those specific configurations aren't difficult.
  • Offer a basic consumer-facing API. The APIs are straight forward to use correctly and difficult to use incorrectly.
  • Developers don't have to learn key management principles. The system handles algorithm selection and key lifetime on behalf of the developer. The developer doesn't have access to the raw key material.
  • Keys are protected at rest as much as possible. The system figures out an appropriate default protection mechanism and applies it automatically.

The data protection APIs aren't primarily intended for indefinite persistence of confidential payloads. Other technologies, such as Windows CNG DPAPI and Azure Rights Management are more suited to the scenario of indefinite storage. They have correspondingly strong key management capabilities. That said, the ASP.NET Core data protection APIs can be used for long-term protection of confidential data.

Audience

The data protection system provides APIs that target three main audiences:

  1. The consumer APIs target application and framework developers.

    I don't want to learn about how the stack operates or about how it's configured. I just want to perform some operation with high probability of using the APIs successfully.

  2. The configuration APIs target app developers and system administrators.

    I need to tell the data protection system that my environment requires non-default paths or settings.

  3. The extensibility APIs target developers in charge of implementing custom policy. Usage of these APIs is limited to rare situations and developers with security experience.

    I need to replace an entire component within the system because I have truly unique behavioral requirements. I'm willing to learn uncommonly used parts of the API surface in order to build a plugin that fulfills my requirements.

Package layout

The data protection stack consists of five packages:

Additional resources

ASP.NET Core provides a cryptographic API to protect data, including key management and rotation.

Web apps often need to store sensitive data. The Windows data protection API (DPAPI) isn't intended for use in web apps.

The ASP.NET Core data protection stack was designed to:

  • Provide a built in solution for most Web scenarios.
  • Address many of the deficiencies of the previous encryption system.
  • Serve as the replacement for the <machineKey> element in ASP.NET 1.x - 4.x.

Problem statement

I need to persist trusted information for later retrieval, but I don't trust the persistence mechanism. In web terms, this might be written as I need to round-trip trusted state via an untrusted client.

Authenticity, integrity, and tamper-proofing is a requirement. The canonical example of this is an authentication cookie or bearer token. The server generates an I am Groot and have xyz permissions token and sends it to the client. The client presents that token back to the server, but the server needs some kind of assurance that the client hasn't forged the token.

Confidentiality is a requirement. Since the persisted state is trusted by the server, this state could contain information that shouldn't be disclosed to an untrusted client. For example:

  • A file path.
  • A permission.
  • A handle or other indirect reference.
  • Some server-specific data.

Isolation is a requirement. Since modern apps are componentized, individual components want to take advantage of this system without regard to other components in the system. For instance, consider a bearer token component using this stack. It should operate without any interference, for example, from an anti-CSRF mechanism also using the same stack.

Some common assumptions can narrow the scope of requirements:

  • All services operating within the cryptosystem are equally trusted.
  • The data doesn't need to be generated or consumed outside of the services under our direct control.
  • Operations must be fast since each request to the web service might go through the cryptosystem one or more times. The speed requirement makes symmetric cryptography ideal. Asymmetric cryptography isn't used until it's required.

Design philosophy

ASP.NET Core data protection is an easy to use data protection stack. It's based on the following principles:

  • Ease of configuration. The system strives for zero configuration. In situations where developers need to configure a specific aspect, such as the key repository, those specific configurations aren't difficult.
  • Offer a basic consumer-facing API. The APIs are straight forward to use correctly and difficult to use incorrectly.
  • Developers don't have to learn key management principles. The system handles algorithm selection and key lifetime on behalf of the developer. The developer doesn't have access to the raw key material.
  • Keys are protected at rest as much as possible. The system figures out an appropriate default protection mechanism and applies it automatically.

The data protection APIs aren't primarily intended for indefinite persistence of confidential payloads. Other technologies, such as Windows CNG DPAPI and Azure Rights Management are more suited to the scenario of indefinite storage. They have correspondingly strong key management capabilities. That said, the ASP.NET Core data protection APIs can be used for long-term protection of confidential data.

Audience

The data protection system provides APIs that target three main audiences:

  1. The consumer APIs target application and framework developers.

    I don't want to learn about how the stack operates or about how it's configured. I just want to perform some operation with high probability of using the APIs successfully.

  2. The configuration APIs target app developers and system administrators.

    I need to tell the data protection system that my environment requires non-default paths or settings.

  3. The extensibility APIs target developers in charge of implementing custom policy. Usage of these APIs is limited to rare situations and developers with security experience.

    I need to replace an entire component within the system because I have truly unique behavioral requirements. I'm willing to learn uncommonly used parts of the API surface in order to build a plugin that fulfills my requirements.

Package layout

The data protection stack consists of five packages:

Additional resources