57 lines
1.8 KiB
Go
57 lines
1.8 KiB
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"crypto/rand"
|
||
|
|
"crypto/rsa"
|
||
|
|
"crypto/tls"
|
||
|
|
"crypto/x509"
|
||
|
|
"crypto/x509/pkix"
|
||
|
|
"log"
|
||
|
|
"math/big"
|
||
|
|
"net"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// serverCert returns the TLS certificate to serve: the admin-supplied PEM pair
|
||
|
|
// when both paths are set, otherwise a freshly generated in-memory self-signed
|
||
|
|
// cert for local development.
|
||
|
|
func serverCert(certPath, keyPath string) (tls.Certificate, error) {
|
||
|
|
if certPath != "" && keyPath != "" {
|
||
|
|
return tls.LoadX509KeyPair(certPath, keyPath)
|
||
|
|
}
|
||
|
|
log.Printf("tls: no tls_cert/tls_key configured - generating a self-signed certificate (dev only)")
|
||
|
|
return generateSelfSignedCert()
|
||
|
|
}
|
||
|
|
|
||
|
|
func generateSelfSignedCert() (tls.Certificate, error) {
|
||
|
|
priv, err := rsa.GenerateKey(rand.Reader, 2048)
|
||
|
|
if err != nil {
|
||
|
|
return tls.Certificate{}, err
|
||
|
|
}
|
||
|
|
|
||
|
|
// Random serial: a fixed serial (1) makes every generated cert collide in a
|
||
|
|
// browser/OS trust store, so a previously-accepted cert can't be replaced.
|
||
|
|
serial, err := rand.Int(rand.Reader, new(big.Int).Lsh(big.NewInt(1), 128))
|
||
|
|
if err != nil {
|
||
|
|
return tls.Certificate{}, err
|
||
|
|
}
|
||
|
|
|
||
|
|
template := x509.Certificate{
|
||
|
|
SerialNumber: serial,
|
||
|
|
Subject: pkix.Name{Organization: []string{"nadir-dev-local"}},
|
||
|
|
NotBefore: time.Now(),
|
||
|
|
NotAfter: time.Now().Add(365 * 24 * time.Hour),
|
||
|
|
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
||
|
|
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
|
||
|
|
BasicConstraintsValid: true,
|
||
|
|
DNSNames: []string{"localhost"},
|
||
|
|
IPAddresses: []net.IP{net.IPv4(127, 0, 0, 1), net.IPv6loopback},
|
||
|
|
}
|
||
|
|
|
||
|
|
derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
|
||
|
|
if err != nil {
|
||
|
|
return tls.Certificate{}, err
|
||
|
|
}
|
||
|
|
return tls.Certificate{Certificate: [][]byte{derBytes}, PrivateKey: priv}, nil
|
||
|
|
}
|