-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpsclient.go
More file actions
40 lines (31 loc) · 699 Bytes
/
Copy pathhttpsclient.go
File metadata and controls
40 lines (31 loc) · 699 Bytes
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
package https
import (
"crypto/tls"
"crypto/x509"
"io/ioutil"
"net/http"
)
type HttpsClient struct {
Host string `json:"host"`
Port string `json:"port"`
pool *x509.CertPool
Client *http.Client
}
func NewHttpsClient(host, port, cert string) *HttpsClient {
https := &HttpsClient{
Host: host,
Port: port,
pool: x509.NewCertPool(),
}
caCrt, err := ioutil.ReadFile(cert)
if err != nil {
log.Fatalf("NewHttpsClient ReadFile err: file=%s, err=%s", cert, err)
}
https.pool.AppendCertsFromPEM(caCrt)
tr := &http.Transport{
TLSClientConfig: &tls.Config{RootCAs: https.pool},
DisableCompression: true,
}
https.Client = &http.Client{Transport: tr}
return https
}