-
Notifications
You must be signed in to change notification settings - Fork 25
/
parse.go
68 lines (55 loc) · 1.65 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
package gost
import (
"errors"
"encoding/pem"
"github.com/deatil/go-cryptobin/gost"
"github.com/deatil/go-cryptobin/pkcs8"
)
var (
ErrKeyMustBePEMEncoded = errors.New("invalid key: Key must be a PEM encoded PKCS8 key")
ErrNotGostPrivateKey = errors.New("key is not a valid Gost private key")
ErrNotGostPublicKey = errors.New("key is not a valid Gost public key")
)
// 解析私钥
func (this Gost) ParsePrivateKeyFromPEM(key []byte) (*gost.PrivateKey, error) {
// Parse PEM block
block, _ := pem.Decode(key)
if block == nil {
return nil, ErrKeyMustBePEMEncoded
}
pkey, err := gost.ParsePrivateKey(block.Bytes)
if err != nil {
return nil, ErrNotGostPrivateKey
}
return pkey, nil
}
// 解析带密码的私钥
func (this Gost) ParsePrivateKeyFromPEMWithPassword(key []byte, password string) (*gost.PrivateKey, error) {
// Parse PEM block
block, _ := pem.Decode(key)
if block == nil {
return nil, ErrKeyMustBePEMEncoded
}
blockDecrypted, err := pkcs8.DecryptPEMBlock(block, []byte(password))
if err != nil {
return nil, err
}
pkey, err := gost.ParsePrivateKey(blockDecrypted)
if err != nil {
return nil, ErrNotGostPrivateKey
}
return pkey, nil
}
// 解析公钥
func (this Gost) ParsePublicKeyFromPEM(key []byte) (*gost.PublicKey, error) {
// Parse PEM block
var block *pem.Block
if block, _ = pem.Decode(key); block == nil {
return nil, ErrKeyMustBePEMEncoded
}
pkey, err := gost.ParsePublicKey(block.Bytes)
if err != nil {
return nil, ErrNotGostPublicKey
}
return pkey, nil
}