Class ClientEncryptionKey
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Encryption used for WsFed responses with this client.
[Serializable]
public record ClientEncryptionKey : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<ClientEncryptionKey>
- Inheritance
-
ClientEncryptionKey
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Cert
Encryption certificate for public key in X.509 (.CER) format.
[JsonPropertyName("cert")]
public string? Cert { get; set; }
Property Value
Pub
Encryption Public RSA Key.
[JsonPropertyName("pub")]
public string? Pub { get; set; }
Property Value
Subject
Encryption certificate name for this certificate in the format /CN={domain}.
[JsonPropertyName("subject")]
public string? Subject { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.