Skip to content

Commit 2d27879

Browse files
committedMay 24, 2022
Fix KeyUsage on x509 template
x509.KeyUsageKeyEncipherment is only valid for RSA. It's probably harmless to have it on other things, but it really shouldn't be there.
1 parent 74571b5 commit 2d27879

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎pkg/crypto/selfsign/selfsign.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,19 @@ func WithDNS(key crypto.PrivateKey, cn string, sans ...string) (tls.Certificate,
7272
names := []string{cn}
7373
names = append(names, sans...)
7474

75+
keyUsage := x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign
76+
if _, isRSA := key.(*rsa.PrivateKey); isRSA {
77+
keyUsage |= x509.KeyUsageKeyEncipherment
78+
}
79+
7580
template := x509.Certificate{
7681
ExtKeyUsage: []x509.ExtKeyUsage{
7782
x509.ExtKeyUsageClientAuth,
7883
x509.ExtKeyUsageServerAuth,
7984
},
8085
BasicConstraintsValid: true,
8186
NotBefore: time.Now(),
82-
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
87+
KeyUsage: keyUsage,
8388
NotAfter: time.Now().AddDate(0, 1, 0),
8489
SerialNumber: serialNumber,
8590
Version: 2,

0 commit comments

Comments
 (0)
Please sign in to comment.