mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
fix certificate check in the example client
This commit is contained in:
parent
914193cc9d
commit
4febf95c0b
2 changed files with 18 additions and 14 deletions
|
@ -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,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
22
internal/testdata/cert.go
vendored
22
internal/testdata/cert.go
vendored
|
@ -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)
|
|
||||||
}
|
}
|
||||||
certPool := x509.NewCertPool()
|
|
||||||
certPool.AddCert(caCert)
|
// GetRootCA returns an x509.CertPool containing (only) the CA certificate
|
||||||
return certPool
|
func GetRootCA() *x509.CertPool {
|
||||||
|
pool := x509.NewCertPool()
|
||||||
|
AddRootCA(pool)
|
||||||
|
return pool
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue