OIDCServerConfig#
- class gafaelfawr.config.OIDCServerConfig(issuer, key_id, audience, keypair, lifetime, clients)#
Bases:
object
Configuration for the OpenID Connect server.
- Parameters:
issuer (
str
) –key_id (
str
) –audience (
str
) –keypair (
RSAKeyPair
) –lifetime (
timedelta
) –clients (
tuple
[OIDCClient
,...
]) –
Attributes Summary
aud (audience) field in issued tokens.
Supported OpenID Connect clients.
iss (issuer) field in issued tokens.
kid (key ID) header field in issued tokens.
RSA key pair for signing and verifying issued tokens.
Lifetime of issued tokens.
Attributes Documentation
-
clients:
tuple
[OIDCClient
,...
]# Supported OpenID Connect clients.
-
keypair:
RSAKeyPair
# RSA key pair for signing and verifying issued tokens.