This commit is contained in:
adlerhurst 2020-09-10 16:24:48 +02:00
parent 9d8fc4fe8a
commit a731a46ccf
4 changed files with 17 additions and 14 deletions

View file

@ -31,6 +31,7 @@ type OPStorage interface {
GetUserinfoFromScopes(context.Context, string, []string) (*oidc.Userinfo, error)
GetUserinfoFromToken(context.Context, string, string) (*oidc.Userinfo, error)
GetKeysByServiceAccount(ctx context.Context, id string) (*jose.JSONWebKeySet, error)
GetKeyByID(ctx context.Context, keyID string) (*jose.JSONWebKeySet, error)
}
type Storage interface {