Skip to main content

EllipticCurveTypes Class

Abblix.Jwt

Abblix.Jwt

EllipticCurveTypes Class

Elliptic curve identifiers for the JWK "crv" parameter, as defined in RFC 7518 Section 6.2.1.1.

public static class EllipticCurveTypes

Inheritance System.Object → EllipticCurveTypes

Fields

EllipticCurveTypes.P256 Field

NIST P-256 (secp256r1 / prime256v1 / X9.62 prime256v1), a 256-bit prime-field curve. Pairs with ES256.

public const string P256 = "P-256";

Field Value

System.String

EllipticCurveTypes.P384 Field

NIST P-384 (secp384r1), a 384-bit prime-field curve. Pairs with ES384.

public const string P384 = "P-384";

Field Value

System.String

EllipticCurveTypes.P521 Field

NIST P-521 (secp521r1), a 521-bit prime-field curve. Pairs with ES512 (note the algorithm name uses 512, referring to the SHA-512 hash, while the curve itself is 521 bits).

public const string P521 = "P-521";

Field Value

System.String