fix certificate check in the example client

This commit is contained in:
Marten Seemann 2019-11-07 10:29:55 +07:00
parent 914193cc9d
commit 4febf95c0b
2 changed files with 18 additions and 14 deletions

View file

@ -3,6 +3,7 @@ package main
import ( import (
"bytes" "bytes"
"crypto/tls" "crypto/tls"
"crypto/x509"
"flag" "flag"
"io" "io"
"net/http" "net/http"
@ -29,9 +30,14 @@ func main() {
} }
logger.SetLogTimeFormat("") logger.SetLogTimeFormat("")
pool, err := x509.SystemCertPool()
if err != nil {
panic(err)
}
testdata.AddRootCA(pool)
roundTripper := &http3.RoundTripper{ roundTripper := &http3.RoundTripper{
TLSClientConfig: &tls.Config{ TLSClientConfig: &tls.Config{
RootCAs: testdata.GetRootCA(), RootCAs: pool,
InsecureSkipVerify: *insecure, InsecureSkipVerify: *insecure,
}, },
} }

View file

@ -3,7 +3,6 @@ package testdata
import ( import (
"crypto/tls" "crypto/tls"
"crypto/x509" "crypto/x509"
"encoding/pem"
"io/ioutil" "io/ioutil"
"path" "path"
"runtime" "runtime"
@ -36,22 +35,21 @@ func GetTLSConfig() *tls.Config {
} }
} }
// GetRootCA returns an x509.CertPool containing the CA certificate // AddRootCA adds the root CA certificate to a cert pool
func GetRootCA() *x509.CertPool { func AddRootCA(certPool *x509.CertPool) {
caCertPath := path.Join(certPath, "ca.pem") caCertPath := path.Join(certPath, "ca.pem")
caCertRaw, err := ioutil.ReadFile(caCertPath) caCertRaw, err := ioutil.ReadFile(caCertPath)
if err != nil { if err != nil {
panic(err) panic(err)
} }
p, _ := pem.Decode(caCertRaw) if ok := certPool.AppendCertsFromPEM(caCertRaw); !ok {
if p.Type != "CERTIFICATE" { panic("Could not add root ceritificate to pool.")
panic("expected a certificate")
} }
caCert, err := x509.ParseCertificate(p.Bytes) }
if err != nil {
panic(err) // GetRootCA returns an x509.CertPool containing (only) the CA certificate
} func GetRootCA() *x509.CertPool {
certPool := x509.NewCertPool() pool := x509.NewCertPool()
certPool.AddCert(caCert) AddRootCA(pool)
return certPool return pool
} }