forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tls.go
54 lines (46 loc) · 1.06 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
/*
Copyright IBM Corp All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package operations
import (
"crypto/tls"
"crypto/x509"
"io/ioutil"
"github.com/hyperledger/fabric/core/comm"
)
type TLS struct {
Enabled bool
CertFile string
KeyFile string
ClientCertRequired bool
ClientCACertFiles []string
}
func (t TLS) Config() (*tls.Config, error) {
var tlsConfig *tls.Config
if t.Enabled {
cert, err := tls.LoadX509KeyPair(t.CertFile, t.KeyFile)
if err != nil {
return nil, err
}
caCertPool := x509.NewCertPool()
for _, caPath := range t.ClientCACertFiles {
caPem, err := ioutil.ReadFile(caPath)
if err != nil {
return nil, err
}
caCertPool.AppendCertsFromPEM(caPem)
}
tlsConfig = &tls.Config{
Certificates: []tls.Certificate{cert},
CipherSuites: comm.DefaultTLSCipherSuites,
ClientCAs: caCertPool,
}
if t.ClientCertRequired {
tlsConfig.ClientAuth = tls.RequireAndVerifyClientCert
} else {
tlsConfig.ClientAuth = tls.VerifyClientCertIfGiven
}
}
return tlsConfig, nil
}