mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 13:57:32 +00:00
10 lines
168 B
Go
10 lines
168 B
Go
package crypto
|
|
|
|
import "context"
|
|
|
|
type KeyStorage interface {
|
|
ReadKeys() (Keys, error)
|
|
ReadKey(id string) (*Key, error)
|
|
CreateKeys(context.Context, ...*Key) error
|
|
}
|