mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
remove DER certificates and use PEMs instead
This commit is contained in:
parent
705da8fd00
commit
3d4ca214f7
6 changed files with 19 additions and 36 deletions
|
@ -2,7 +2,6 @@ package main
|
|||
|
||||
import (
|
||||
"crypto/tls"
|
||||
"crypto/x509"
|
||||
"flag"
|
||||
"fmt"
|
||||
"io"
|
||||
|
@ -85,10 +84,13 @@ func main() {
|
|||
tlsConfig = testdata.GetTLSConfig()
|
||||
} else {
|
||||
var err error
|
||||
tlsConfig, err = tlsConfigFromCertpath(*certPath)
|
||||
cert, err := tls.LoadX509KeyPair(*certPath+"/fullchain.pem", *certPath+"/privkey.pem")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
tlsConfig = &tls.Config{
|
||||
Certificates: []tls.Certificate{cert},
|
||||
}
|
||||
}
|
||||
|
||||
http.Handle("/", http.FileServer(http.Dir(*www)))
|
||||
|
@ -118,24 +120,3 @@ func main() {
|
|||
}
|
||||
wg.Wait()
|
||||
}
|
||||
|
||||
func tlsConfigFromCertpath(certpath string) (*tls.Config, error) {
|
||||
keyDer, err := ioutil.ReadFile(certpath + "/key.der")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
certDer, err := ioutil.ReadFile(certpath + "/cert.der")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
key, err := x509.ParsePKCS1PrivateKey(keyDer)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &tls.Config{
|
||||
Certificates: []tls.Certificate{{
|
||||
Certificate: [][]byte{certDer},
|
||||
PrivateKey: key,
|
||||
}},
|
||||
}, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue