Repository URL to install this package:
|
Version:
0.13 ▾
|
"""
authlib.jose
~~~~~~~~~~~~
JOSE implementation in Authlib. Tracking the status of JOSE specs at
https://tools.ietf.org/wg/jose/
"""
from .rfc7515 import (
JsonWebSignature, JWSAlgorithm, JWSHeader, JWSObject,
)
from .rfc7516 import (
JsonWebEncryption, JWEAlgorithm, JWEEncAlgorithm, JWEZipAlgorithm,
)
from .rfc7517 import JsonWebKey, JWKAlgorithm
from .rfc7518 import (
JWS_ALGORITHMS,
JWE_ALGORITHMS,
JWE_ALG_ALGORITHMS,
JWE_ENC_ALGORITHMS,
JWE_ZIP_ALGORITHMS,
JWK_ALGORITHMS,
)
from .rfc7519 import JWT, JsonWebToken, BaseClaims, JWTClaims
from .jwk import jwk
jwt = JsonWebToken()
# attach algorithms
JsonWebSignature.JWS_AVAILABLE_ALGORITHMS = {alg.name: alg for alg in JWS_ALGORITHMS}
JsonWebEncryption.JWE_AVAILABLE_ALGORITHMS = {alg.name: alg for alg in JWE_ALGORITHMS}
JsonWebKey.JWK_AVAILABLE_ALGORITHMS = {alg.name: alg for alg in JWK_ALGORITHMS}
# compatible imports
JWS = JsonWebSignature
JWE = JsonWebEncryption
JWK = JsonWebKey
__all__ = [
'JWS', 'JsonWebSignature', 'JWSAlgorithm', 'JWSHeader', 'JWSObject',
'JWE', 'JsonWebEncryption', 'JWEAlgorithm', 'JWEEncAlgorithm', 'JWEZipAlgorithm',
'JWK', 'JsonWebKey', 'JWKAlgorithm',
'JWS_ALGORITHMS',
'JWE_ALGORITHMS',
'JWE_ALG_ALGORITHMS',
'JWE_ENC_ALGORITHMS',
'JWE_ZIP_ALGORITHMS',
'JWK_ALGORITHMS',
'JWT', 'JsonWebToken', 'BaseClaims', 'JWTClaims',
'jwk', 'jwt',
]