Repository URL to install this package:
|
Version:
0.13 ▾
|
# -*- coding: utf-8 -*-
"""
authlib.oauth2.rfc7523
~~~~~~~~~~~~~~~~~~~~~~
This module represents a direct implementation of
JSON Web Token (JWT) Profile for OAuth 2.0 Client
Authentication and Authorization Grants.
https://tools.ietf.org/html/rfc7523
"""
from .grant import JWTBearerGrant
from .client import (
JWTBearerClientAssertion,
)
from .assertion import (
client_secret_jwt_sign,
private_key_jwt_sign,
)
from .auth import (
ClientSecretJWT, PrivateKeyJWT,
register_session_client_auth_method,
)