Add support for more key types

This commit is contained in:
cheddar 2025-02-20 22:53:18 -05:00
parent b1e4a0cf72
commit 001a4b4ac5
No known key found for this signature in database
14 changed files with 98 additions and 48 deletions

View file

@ -2,15 +2,19 @@ package keydirectory
import (
"crypto"
"crypto/ecdsa"
"crypto/ed25519"
"crypto/rsa"
"fmt"
"reflect"
"github.com/common-fate/httpsig/alg_ecdsa"
"github.com/common-fate/httpsig/alg_ed25519"
"github.com/common-fate/httpsig/alg_rsa"
"github.com/common-fate/httpsig/verifier"
)
type keyEntry struct {
Alg string
PublicKey crypto.PublicKey
UserId string
}
@ -19,14 +23,24 @@ func (k keyEntry) toAlg() (verifier.Algorithm, error) {
var alg verifier.Algorithm
var err error
switch k.Alg {
case "ed25519":
switch k.PublicKey.(type) {
case ed25519.PublicKey:
alg = alg_ed25519.Ed25519{
PublicKey: k.PublicKey.(ed25519.PublicKey),
Attrs: k.UserId,
}
case *rsa.PublicKey:
alg = alg_rsa.RSAPKCS256{
PublicKey: k.PublicKey.(*rsa.PublicKey),
Attrs: k.UserId,
}
case *ecdsa.PublicKey:
alg = alg_ecdsa.P256{
PublicKey: k.PublicKey.(*ecdsa.PublicKey),
Attrs: k.UserId,
}
default:
err = fmt.Errorf("unknown algoritm: %s", k.Alg)
err = fmt.Errorf("unknown key type: %s", reflect.TypeOf(k.PublicKey))
}
return alg, err