feat: add createKeyPair

This commit is contained in:
Livio Amstutz 2020-01-27 15:28:49 +01:00
parent c065f66d08
commit 47fc3da583
2 changed files with 8 additions and 2 deletions

View file

@ -16,6 +16,7 @@ type AuthStorage interface {
GetSigningKey(context.Context) (*jose.SigningKey, error)
GetKeySet(context.Context) (*jose.JSONWebKeySet, error)
SaveKeyPair(context.Context) (*jose.SigningKey, error)
}
type OPStorage interface {