Show / Hide Table of Contents

Class JWK

Inheritance
object
JWK
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydataplaneService.Models
Assembly: OCI.DotNetSDK.Identitydataplane.dll
Syntax
public class JWK

Properties

Alg

Declaration
[Required(ErrorMessage = "Alg is required.")]
[JsonProperty(PropertyName = "alg")]
public string Alg { get; set; }
Property Value
Type Description
string

The algorithm.

Remarks

Required

E

Declaration
[Required(ErrorMessage = "E is required.")]
[JsonProperty(PropertyName = "e")]
public string E { get; set; }
Property Value
Type Description
string

The exponent.

Remarks

Required

Kid

Declaration
[Required(ErrorMessage = "Kid is required.")]
[JsonProperty(PropertyName = "kid")]
public string Kid { get; set; }
Property Value
Type Description
string

The key id.

Remarks

Required

Kty

Declaration
[Required(ErrorMessage = "Kty is required.")]
[JsonProperty(PropertyName = "kty")]
public string Kty { get; set; }
Property Value
Type Description
string

The key type.

Remarks

Required

N

Declaration
[Required(ErrorMessage = "N is required.")]
[JsonProperty(PropertyName = "n")]
public string N { get; set; }
Property Value
Type Description
string

The modulus.

Remarks

Required

Use

Declaration
[Required(ErrorMessage = "Use is required.")]
[JsonProperty(PropertyName = "use")]
public string Use { get; set; }
Property Value
Type Description
string

The key use.

Remarks

Required

In this article
Back to top