Table of Contents

Class TokenEncryptionKey

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Encryption Key

public class TokenEncryptionKey
Inheritance
TokenEncryptionKey
Inherited Members

Properties

Algorithm

Algorithm used to encrypt the token. Possible values: [RSA-OAEP-256, RSA-OAEP-384, RSA-OAEP-512]

[JsonProperty("alg")]
public string Algorithm { get; set; }

Property Value

string

Kid

Key ID.

[JsonProperty("kid")]
public string Kid { get; set; }

Property Value

string

Name

Name of the encryption key.

[JsonProperty("name")]
public string Name { get; set; }

Property Value

string

Pem

PEM-formatted public key. Must be JSON escaped.

[JsonProperty("pem")]
public string Pem { get; set; }

Property Value

string