(private_key_or_func: str | PrivateKeyGenerator, jwt_algorithm: str)
| 212 | |
| 213 | @staticmethod |
| 214 | def create_jwt_sign(private_key_or_func: str | PrivateKeyGenerator, jwt_algorithm: str) -> DictSignFunction: |
| 215 | return JwtSigner(private_key_or_func, jwt_algorithm).jwt_sign |
| 216 | |
| 217 | # v3: move * above private_key |
| 218 | def __init__( |