mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
8 lines
133 B
Go
8 lines
133 B
Go
|
package crypto
|
||
|
|
||
|
type KeyStorage interface {
|
||
|
ReadKeys() (Keys, error)
|
||
|
ReadKey(id string) (*Key, error)
|
||
|
CreateKeys(...*Key) error
|
||
|
}
|