This commit is contained in:
Livio Amstutz 2019-11-29 15:03:13 +01:00
parent 18a17e1b94
commit caedc72d45
11 changed files with 383 additions and 52 deletions

View file

@ -14,7 +14,7 @@ type Storage interface {
AuthorizeClientIDSecret(string, string) (Client, error)
AuthorizeClientIDCodeVerifier(string, string) (Client, error)
DeleteAuthRequestAndCode(string, string) error
GetSigningKey() (jose.SigningKey, error)
GetSigningKey() (*jose.SigningKey, error)
}
type AuthRequest interface {