-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtls.go
88 lines (77 loc) · 2.03 KB
/
tls.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package proxy
import (
"crypto/rand"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"github.com/elazarl/goproxy"
"math/big"
"time"
)
type GenTLSConfig func(serverName string) (*tls.Config, error)
func TLSConfigFormCA(cert *x509.Certificate, key *rsa.PrivateKey) GenTLSConfig {
return func(serverName string) (*tls.Config, error) {
subConf := goproxy.NewProxyHttpServer()
//subConf.Tr.DisableCompression = true
return goproxy.TLSConfigFromCA(&tls.Certificate{
Certificate: [][]byte{cert.Raw},
PrivateKey: key,
})(serverName, &goproxy.ProxyCtx{
Proxy: subConf,
})
}
}
func TLSConfigFromSelfSigned() GenTLSConfig {
return func(serverName string) (*tls.Config, error) {
key, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
return nil, err
}
serialNumber, err := rand.Int(rand.Reader, new(big.Int).Lsh(big.NewInt(1), 128))
if err != nil {
return nil, err
}
template := x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{
CommonName: serverName,
},
NotBefore: time.Now(),
NotAfter: time.Now().Add(3 * 24 * time.Hour),
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
BasicConstraintsValid: true,
IsCA: true,
DNSNames: []string{serverName},
}
certDER, err := x509.CreateCertificate(rand.Reader, &template, &template, &key.PublicKey, key)
if err != nil {
return nil, err
}
cert, err := x509.ParseCertificate(certDER)
if err != nil {
return nil, err
}
return &tls.Config{
Certificates: []tls.Certificate{
{
Certificate: [][]byte{cert.Raw},
PrivateKey: key,
},
},
}, nil
}
}
func TLSConfigFrom(cert *x509.Certificate, key any) GenTLSConfig {
return func(serverName string) (*tls.Config, error) {
return &tls.Config{
Certificates: []tls.Certificate{
{
Certificate: [][]byte{cert.Raw},
PrivateKey: key,
},
},
}, nil
}
}