-
Notifications
You must be signed in to change notification settings - Fork 93
/
util.go
67 lines (58 loc) · 1.83 KB
/
util.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
/*
Notice: This file has been modified for Hyperledger Fabric SDK Go usage.
Please review third_party pinning scripts and patches for more details.
*/
package lib
import (
"crypto/tls"
"crypto/x509"
"encoding/hex"
"encoding/pem"
"net/http"
"github.com/kfsoftware/hlf-operator/internal/github.com/hyperledger/fabric-ca/sdkinternal/pkg/util"
"github.com/pkg/errors"
)
var clientAuthTypes = map[string]tls.ClientAuthType{
"noclientcert": tls.NoClientCert,
"requestclientcert": tls.RequestClientCert,
"requireanyclientcert": tls.RequireAnyClientCert,
"verifyclientcertifgiven": tls.VerifyClientCertIfGiven,
"requireandverifyclientcert": tls.RequireAndVerifyClientCert,
}
// GetCertID returns both the serial number and AKI (Authority Key ID) for the certificate
func GetCertID(bytes []byte) (string, string, error) {
cert, err := BytesToX509Cert(bytes)
if err != nil {
return "", "", err
}
serial := util.GetSerialAsHex(cert.SerialNumber)
aki := hex.EncodeToString(cert.AuthorityKeyId)
return serial, aki, nil
}
// BytesToX509Cert converts bytes (PEM or DER) to an X509 certificate
func BytesToX509Cert(bytes []byte) (*x509.Certificate, error) {
dcert, _ := pem.Decode(bytes)
if dcert != nil {
bytes = dcert.Bytes
}
cert, err := x509.ParseCertificate(bytes)
if err != nil {
return nil, errors.Wrap(err, "Buffer was neither PEM nor DER encoding")
}
return cert, err
}
func addQueryParm(req *http.Request, name, value string) {
url := req.URL.Query()
url.Add(name, value)
req.URL.RawQuery = url.Encode()
}
// CertificateDecoder is needed to keep track of state, to see how many certificates
// have been returned for each enrollment ID.
type CertificateDecoder struct {
certIDCount map[string]int
storePath string
}