JsonWebKey Class
As defined in http://tools.ietf.org/html/draft-ietf-jose-json-web-key-18. All parameters are optional.
- Inheritance
-
builtins.objectJsonWebKey
Constructor
JsonWebKey(**kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
kid
|
Key identifier. |
kty
|
Key Type (kty), as defined in https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40 |
key_ops
|
Allowed operations for the key |
n
|
RSA modulus. |
e
|
RSA public exponent. |
d
|
RSA private exponent, or the D component of an EC private key. |
dp
|
RSA private key parameter. |
dq
|
RSA private key parameter. |
qi
|
RSA private key parameter. |
p
|
RSA secret prime. |
q
|
RSA secret prime, with p < q. |
k
|
Symmetric key. |
t
|
HSM Token, used with 'Bring Your Own Key'. |
crv
|
KeyCurveName or
str
Elliptic curve name. |
x
|
X component of an EC public key. |
y
|
Y component of an EC public key. |
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python