-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathvalidatecerts.go
75 lines (63 loc) · 1.79 KB
/
validatecerts.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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
// validatecerts is a script to ensure that certs used in e2e tests can be parsed by tlscommon
package main
import (
"crypto/x509"
"encoding/pem"
"log"
"os"
"path/filepath"
"github.com/elastic/elastic-agent-libs/logp"
"github.com/elastic/elastic-agent-libs/transport/tlscommon"
)
func main() {
if len(os.Args) < 2 {
log.Fatal("usage: go run ./dev-tools/e2e/validatecerts.go [CERT_DIR]")
}
var (
certDir = os.Args[1]
caFile = filepath.Join(certDir, "e2e-test-ca.crt")
certFile = filepath.Join(certDir, "fleet-server.crt")
keyFile = filepath.Join(certDir, "fleet-server.key")
passFile = filepath.Join(certDir, "passphrase")
)
config := tlscommon.Config{
CAs: []string{
caFile,
},
Certificate: tlscommon.CertificateConfig{
Certificate: certFile,
Key: keyFile,
PassphrasePath: passFile,
},
}
_, err := tlscommon.LoadTLSConfig(&config)
if err != nil {
log.Print(err)
passphrase, err := os.ReadFile(passFile)
if err != nil {
log.Fatal(err)
}
keyPEM, err := tlscommon.ReadPEMFile(logp.NewLogger("certs"), keyFile, string(passphrase))
if err != nil {
log.Fatal("reading pem:", err)
}
keyDER, _ := pem.Decode(keyPEM)
log.Print("Key DER Block Type: ", keyDER.Type)
_, err = x509.ParsePKCS1PrivateKey(keyDER.Bytes)
if err != nil {
log.Print("parsing PKCS1: ", err)
}
_, err = x509.ParsePKCS8PrivateKey(keyDER.Bytes)
if err != nil {
log.Print("parsing PKCS8: ", err)
}
_, err = x509.ParseECPrivateKey(keyDER.Bytes)
if err != nil {
log.Print("parsing EC: ", err)
}
log.Fatal()
}
}