Add RSA Support to KeyID

This commit is contained in:
William 2020-04-08 22:24:18 -07:00 committed by jsosulska
parent 99dd0953c4
commit 8c1741360b
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"crypto"
"crypto/ecdsa"
"crypto/rsa"
"crypto/rand"
"crypto/sha256"
"crypto/x509"
@ -130,6 +131,7 @@ func GenerateCert(signer crypto.Signer, ca string, sn *big.Int, name string, day
func keyID(raw interface{}) ([]byte, error) {
switch raw.(type) {
case *ecdsa.PublicKey:
case *rsa.PublicKey:
default:
return nil, fmt.Errorf("invalid key type: %T", raw)
}