Class Jwk (2.3.0)

public sealed class Jwk : IMessage<Jwk>, IEquatable<Jwk>, IDeepCloneable<Jwk>, IBufferMessage, IMessage

Jwk is a JSON Web Key as specified in RFC 7517

Inheritance

Object > Jwk

Namespace

Google.Cloud.Container.V1

Assembly

Google.Cloud.Container.V1.dll

Constructors

Jwk()

public Jwk()

Jwk(Jwk)

public Jwk(Jwk other)
Parameter
NameDescription
otherJwk

Properties

Alg

public string Alg { get; set; }

Algorithm.

Property Value
TypeDescription
String

Crv

public string Crv { get; set; }

Used for ECDSA keys.

Property Value
TypeDescription
String

E

public string E { get; set; }

Used for RSA keys.

Property Value
TypeDescription
String

Kid

public string Kid { get; set; }

Key ID.

Property Value
TypeDescription
String

Kty

public string Kty { get; set; }

Key Type.

Property Value
TypeDescription
String

N

public string N { get; set; }

Used for RSA keys.

Property Value
TypeDescription
String

Use

public string Use { get; set; }

Permitted uses for the public keys.

Property Value
TypeDescription
String

X

public string X { get; set; }

Used for ECDSA keys.

Property Value
TypeDescription
String

Y

public string Y { get; set; }

Used for ECDSA keys.

Property Value
TypeDescription
String