Jwk is a JSON Web Key as specified in RFC 7517.
JSON representation |
---|
{ "kty": string, "alg": string, "use": string, "kid": string, "n": string, "e": string, "x": string, "y": string, "crv": string } |
Fields | |
---|---|
kty |
Key Type. |
alg |
Algorithm. |
use |
Permitted uses for the public keys. |
kid |
Key ID. |
n |
Used for RSA keys. |
e |
Used for RSA keys. |
x |
Used for ECDSA keys. |
y |
Used for ECDSA keys. |
crv |
Used for ECDSA keys. |