sig-auth.git

git clone https://git.crispbyte.dev/sig-auth.git

sig-auth.git / keydirectory
cheddar  ·  2025-02-21

registration.go

 1package keydirectory
 2
 3import (
 4	"crypto"
 5
 6	"github.com/common-fate/httpsig/verifier"
 7)
 8
 9type RegistrationDirectory interface {
10	verifier.KeyDirectory
11	RegisterKey(key crypto.PublicKey, userId string) (string, error)
12}