mirror of
https://github.com/teamhanko/hanko.git
synced 2025-10-29 07:40:07 +08:00
10 lines
220 B
Go
10 lines
220 B
Go
package jwk
|
|
|
|
import "github.com/lestrrat-go/jwx/v2/jwk"
|
|
|
|
// KeyGenerator Interface for JSON Web Key Generation
|
|
type KeyGenerator interface {
|
|
// Generate a new JWK with a given id
|
|
Generate(id string) (jwk.Key, error)
|
|
}
|