Jwk(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Jwk is a JSON Web Key as specified in RFC 7517.
Attributes |
|
---|---|
Name | Description |
kty |
str
Key Type. |
alg |
str
Algorithm. |
use |
str
Permitted uses for the public keys. |
kid |
str
Key ID. |
n |
str
Used for RSA keys. |
e |
str
Used for RSA keys. |
x |
str
Used for ECDSA keys. |
y |
str
Used for ECDSA keys. |
crv |
str
Used for ECDSA keys. |