MCPcopy
hub / github.com/authlib/authlib / client_secret_jwt_sign

Function client_secret_jwt_sign

authlib/oauth2/rfc7523/assertion.py:50–53  ·  view source on GitHub ↗
(
    client_secret, client_id, token_endpoint, alg="HS256", claims=None, **kwargs
)

Source from the content-addressed store, hash-verified

48
49
50def client_secret_jwt_sign(
51 client_secret, client_id, token_endpoint, alg="HS256", claims=None, **kwargs
52):
53 return _sign(client_secret, client_id, token_endpoint, alg, claims, **kwargs)
54
55
56def private_key_jwt_sign(

Callers 7

test_invalid_jwtFunction · 0.90
test_not_found_clientFunction · 0.90
test_client_secret_jwtFunction · 0.90
test_not_validate_jtiFunction · 0.90
test_validate_jti_failedFunction · 0.90
signMethod · 0.85

Calls 1

_signFunction · 0.85

Tested by 6

test_invalid_jwtFunction · 0.72
test_not_found_clientFunction · 0.72
test_client_secret_jwtFunction · 0.72
test_not_validate_jtiFunction · 0.72
test_validate_jti_failedFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…