Table of Contents

Enum DPoPModes

Namespace
Auth0.AspNetCore.Authentication.Api.DPoP
Assembly
Auth0.AspNetCore.Authentication.Api.dll

Specifies the available DPoP (Demonstration of Proof-of-Possession) enforcement modes.

public enum DPoPModes

Fields

Allowed = 0

DPoP tokens are accepted if present, but not required. Bearer tokens are also accepted.

Disabled = 2

DPoP validation is not performed; only standard JWT Bearer tokens are accepted.

Required = 1

DPoP tokens must be present for authentication. Bearer tokens will be rejected.

Remarks

Permitted values are: Allowed, Required and Disabled