-
Notifications
You must be signed in to change notification settings - Fork 24
/
parse.go
96 lines (76 loc) · 2.3 KB
/
parse.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
95
96
package ecdh
import (
"errors"
"crypto"
"encoding/pem"
"github.com/deatil/go-cryptobin/dh/ecdh"
cryptobin_pkcs8 "github.com/deatil/go-cryptobin/pkcs8"
)
var (
ErrKeyMustBePEMEncoded = errors.New("invalid key: Key must be a PEM encoded PKCS1 or PKCS8 key")
ErrNotPrivateKey = errors.New("key is not a valid ecdh private key")
ErrNotPublicKey = errors.New("key is not a valid ecdh public key")
)
// 解析私钥
func (this Ecdh) ParsePrivateKeyFromPEM(key []byte) (crypto.PrivateKey, error) {
var err error
// Parse PEM block
var block *pem.Block
if block, _ = pem.Decode(key); block == nil {
return nil, ErrKeyMustBePEMEncoded
}
// Parse the key
var parsedKey any
if parsedKey, err = ecdh.ParsePrivateKey(block.Bytes); err != nil {
return nil, err
}
var pkey *ecdh.PrivateKey
var ok bool
if pkey, ok = parsedKey.(*ecdh.PrivateKey); !ok {
return nil, ErrNotPrivateKey
}
return pkey, nil
}
// 解析私钥带密码
func (this Ecdh) ParsePrivateKeyFromPEMWithPassword(key []byte, password string) (crypto.PrivateKey, error) {
var err error
// Parse PEM block
var block *pem.Block
if block, _ = pem.Decode(key); block == nil {
return nil, ErrKeyMustBePEMEncoded
}
var blockDecrypted []byte
if blockDecrypted, err = cryptobin_pkcs8.DecryptPEMBlock(block, []byte(password)); err != nil {
return nil, err
}
var parsedKey any
if parsedKey, err = ecdh.ParsePrivateKey(blockDecrypted); err != nil {
return nil, err
}
var pkey *ecdh.PrivateKey
var ok bool
if pkey, ok = parsedKey.(*ecdh.PrivateKey); !ok {
return nil, ErrNotPrivateKey
}
return pkey, nil
}
// 解析公钥
func (this Ecdh) ParsePublicKeyFromPEM(key []byte) (crypto.PublicKey, error) {
var err error
// Parse PEM block
var block *pem.Block
if block, _ = pem.Decode(key); block == nil {
return nil, ErrKeyMustBePEMEncoded
}
// Parse the key
var parsedKey any
if parsedKey, err = ecdh.ParsePublicKey(block.Bytes); err != nil {
return nil, err
}
var pkey *ecdh.PublicKey
var ok bool
if pkey, ok = parsedKey.(*ecdh.PublicKey); !ok {
return nil, ErrNotPublicKey
}
return pkey, nil
}