-
Notifications
You must be signed in to change notification settings - Fork 43
/
rsa.go
106 lines (93 loc) · 2.81 KB
/
rsa.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
97
98
99
100
101
102
103
104
105
106
package util
import (
"crypto"
"crypto/rand"
"crypto/rsa"
"crypto/sha256"
"crypto/x509"
"encoding/pem"
"errors"
"io"
"io/ioutil"
mrand "math/rand"
"time"
)
func init() {
mrand.Seed(time.Now().UnixNano())
}
// ReadPublicKeyFromPem read public key from pem file
func ReadPublicKeyFromPem(r io.Reader) (*rsa.PublicKey, error) {
bs, err := ioutil.ReadAll(r)
if err != nil {
return nil, err
}
return ParsePublicKeyFromPem(bs)
}
// ParsePublicKeyFromPem read public key from pem file
func ParsePublicKeyFromPem(bs []byte) (*rsa.PublicKey, error) {
block, _ := pem.Decode(bs)
pubKeyI, err := x509.ParsePKIXPublicKey(block.Bytes)
if err != nil {
return nil, err
}
pubKey, ok := pubKeyI.(*rsa.PublicKey)
if !ok {
return nil, errors.New("not rsa public key")
}
return pubKey, nil
}
// ReadPrivateKeyFromPem read private key from pem file
func ReadPrivateKeyFromPem(r io.Reader) (*rsa.PrivateKey, error) {
bs, err := ioutil.ReadAll(r)
if err != nil {
return nil, err
}
return ParsePrivateKeyFromPem(bs)
}
func ParsePrivateKeyFromPem(bs []byte) (*rsa.PrivateKey, error) {
block, _ := pem.Decode(bs)
privKeyI, err := x509.ParsePKCS8PrivateKey(block.Bytes)
if err != nil {
return nil, err
}
privKey, ok := privKeyI.(*rsa.PrivateKey)
if !ok {
return nil, errors.New("not rsa private key")
}
return privKey, nil
}
// WritePrivateKeyPem write private key to pem file
func WritePrivateKeyPem(w io.Writer, privKey *rsa.PrivateKey) error {
X509PrivateKey := x509.MarshalPKCS1PrivateKey(privKey)
privateBlock := pem.Block{Type: "RSA Private Key", Bytes: X509PrivateKey}
return pem.Encode(w, &privateBlock)
}
// WritePublicKeyPem write public key to pem file
func WritePublicKeyPem(w io.Writer, pubKey *rsa.PublicKey) error {
X509PublicKey, err := x509.MarshalPKIXPublicKey(pubKey)
if err != nil {
return err
}
publicBlock := pem.Block{Type: "RSA Public Key", Bytes: X509PublicKey}
return pem.Encode(w, &publicBlock)
}
// SignWithPrivateKey sign data with private key
func SignWithPrivateKey(msg []byte, privKey *rsa.PrivateKey) ([]byte, error) {
hash := sha256.Sum256(msg)
return rsa.SignPKCS1v15(rand.Reader, privKey, crypto.SHA256, hash[:])
}
// VerifyWithPublicKey sign data with private key
func VerifyWithPublicKey(msg []byte, signature []byte, pubKey *rsa.PublicKey) error {
hash := sha256.Sum256(msg)
return rsa.VerifyPKCS1v15(pubKey, crypto.SHA256, hash[:], signature)
}
// EncryptWithPublicKey encrypts data with public key
func EncryptWithPublicKey(msg []byte, pub *rsa.PublicKey) ([]byte, error) {
hash := sha256.New()
return rsa.EncryptOAEP(hash, rand.Reader, pub, msg, nil)
}
// DecryptWithPrivateKey decrypts data with private key
func DecryptWithPrivateKey(ciphertext []byte, priv *rsa.PrivateKey) ([]byte, error) {
hash := sha256.New()
return rsa.DecryptOAEP(hash, rand.Reader, priv, ciphertext, nil)
}