-
Notifications
You must be signed in to change notification settings - Fork 26
/
parser.go
94 lines (78 loc) · 2.37 KB
/
parser.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package key
import (
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"errors"
)
var (
ErrorPEMRequired = errors.New("Keys must be PEM-encoded")
ErrorUnsupportedPrivateKeyFormat = errors.New("Private keys must be in PKCS1 or PKCS8 format")
ErrorNotRSAPrivateKey = errors.New("Only RSA private keys are supported")
ErrorNotRSAPublicKey = errors.New("Only RSA public keys or certificates are suppored")
)
// Parser parses a chunk of bytes into a Pair. Parser implementations must
// always be safe for concurrent access.
type Parser interface {
// Parse examines data to produce a Pair. If the returned error is not nil,
// the Pair will always be nil. This method is responsible for dealing with
// any required decoding, such as PEM or DER.
ParseKey(Purpose, []byte) (Pair, error)
}
// defaultParser is the internal default Parser implementation
type defaultParser int
func (p defaultParser) String() string {
return "defaultParser"
}
func (p defaultParser) parseRSAPrivateKey(purpose Purpose, decoded []byte) (Pair, error) {
var (
parsedKey interface{}
err error
)
if parsedKey, err = x509.ParsePKCS1PrivateKey(decoded); err != nil {
if parsedKey, err = x509.ParsePKCS8PrivateKey(decoded); err != nil {
return nil, ErrorUnsupportedPrivateKeyFormat
}
}
privateKey, ok := parsedKey.(*rsa.PrivateKey)
if !ok {
return nil, ErrorNotRSAPrivateKey
}
return &rsaPair{
purpose: purpose,
public: privateKey.Public(),
private: privateKey,
}, nil
}
func (p defaultParser) parseRSAPublicKey(purpose Purpose, decoded []byte) (Pair, error) {
var (
parsedKey interface{}
err error
)
if parsedKey, err = x509.ParsePKIXPublicKey(decoded); err != nil {
return nil, err
}
publicKey, ok := parsedKey.(*rsa.PublicKey)
if !ok {
return nil, ErrorNotRSAPublicKey
}
return &rsaPair{
purpose: purpose,
public: publicKey,
private: nil,
}, nil
}
func (p defaultParser) ParseKey(purpose Purpose, data []byte) (Pair, error) {
block, _ := pem.Decode(data)
if block == nil {
return nil, ErrorPEMRequired
}
if purpose.RequiresPrivateKey() {
return p.parseRSAPrivateKey(purpose, block.Bytes)
} else {
return p.parseRSAPublicKey(purpose, block.Bytes)
}
}
// DefaultParser is the global, singleton default parser. All keys submitted to
// this parser must be PEM-encoded.
var DefaultParser Parser = defaultParser(0)