-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcerts.go
65 lines (60 loc) · 1.68 KB
/
certs.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
package signedexchange
import (
"crypto"
"crypto/ecdsa"
"crypto/x509"
"encoding/pem"
"errors"
"fmt"
)
func ParseCertificates(text []byte) ([]*x509.Certificate, error) {
certs := []*x509.Certificate{}
for len(text) > 0 {
var block *pem.Block
block, text = pem.Decode(text)
if block == nil {
break
}
if block.Type != "CERTIFICATE" {
return nil, fmt.Errorf("signedexchange: found a block that contains %q.", block.Type)
}
if len(block.Headers) > 0 {
return nil, fmt.Errorf("signedexchange: unexpected certificate headers: %v", block.Headers)
}
cert, err := x509.ParseCertificate(block.Bytes)
if err != nil {
return nil, err
}
certs = append(certs, cert)
}
return certs, nil
}
func ParsePrivateKey(text []byte) (crypto.PrivateKey, error) {
for len(text) > 0 {
var block *pem.Block
block, text = pem.Decode(text)
if block == nil {
return nil, errors.New("signedexchange: invalid PEM block in private key.")
}
privkey, err := parsePrivateKeyBlock(block.Bytes)
if err == nil {
return privkey, nil
}
}
return nil, errors.New("signedexchange: could not find private key.")
}
func parsePrivateKeyBlock(derKey []byte) (crypto.PrivateKey, error) {
// Try each of 2 key formats and take the first one that successfully parses.
if keyInterface, err := x509.ParsePKCS8PrivateKey(derKey); err == nil {
switch typedKey := keyInterface.(type) {
case *ecdsa.PrivateKey:
return typedKey, nil
default:
return nil, fmt.Errorf("signedexchange: unknown private key type in PKCS#8: %T", typedKey)
}
}
if key, err := x509.ParseECPrivateKey(derKey); err == nil {
return key, nil
}
return nil, errors.New("signedexchange: couldn't parse private key.")
}