initial ssh proxy demo

This commit is contained in:
Joe Kralicky 2025-03-19 20:16:18 +00:00
commit 165e4f2ed9
No known key found for this signature in database
GPG key ID: 75C4875F34A9FB79
43 changed files with 3328 additions and 1348 deletions

View file

@ -266,3 +266,11 @@ func (p *Provider) VerifyAccessToken(_ context.Context, _ string) (claims map[st
func (p *Provider) VerifyIdentityToken(_ context.Context, _ string) (claims map[string]any, err error) {
return nil, identity.ErrVerifyIdentityTokenNotSupported
}
func (p *Provider) DeviceAuth(_ context.Context) (*oauth2.DeviceAuthResponse, error) {
return nil, oidc.ErrDeviceAuthNotImplemented
}
func (p *Provider) DeviceAccessToken(_ context.Context, _ *oauth2.DeviceAuthResponse, _ identity.State) (*oauth2.Token, error) {
return nil, oidc.ErrDeviceAuthNotImplemented
}