mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-17 18:22:54 +02:00
initial ssh proxy demo
This commit is contained in:
commit
165e4f2ed9
43 changed files with 3328 additions and 1348 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue