MCPcopy
hub / github.com/authlib/authlib / private_key_jwt_sign

Function private_key_jwt_sign

authlib/oauth2/rfc7523/assertion.py:56–59  ·  view source on GitHub ↗
(
    private_key, client_id, token_endpoint, alg="RS256", claims=None, **kwargs
)

Source from the content-addressed store, hash-verified

54
55
56def private_key_jwt_sign(
57 private_key, client_id, token_endpoint, alg="RS256", claims=None, **kwargs
58):
59 return _sign(private_key, client_id, token_endpoint, alg, claims, **kwargs)
60
61
62def _sign(key, client_id, token_endpoint, alg, claims=None, **kwargs):

Callers 2

test_private_key_jwtFunction · 0.90
signMethod · 0.85

Calls 1

_signFunction · 0.85

Tested by 1

test_private_key_jwtFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…