-
Notifications
You must be signed in to change notification settings - Fork 19
/
rsa.go
100 lines (81 loc) · 2.56 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
package sshego
import (
"bytes"
cryptrand "crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"fmt"
"io/ioutil"
"github.com/glycerine/sshego/xendor/github.com/glycerine/xcryptossh"
)
// GenRSAKeyPair generates an RSA keypair of length bits. If rsa_file != "", we write
// the private key to rsa_file and the public key to rsa_file + ".pub". If rsa_file == ""
// the keys are not written to disk.
//
func GenRSAKeyPair(rsaFile string, bits int, email string) (priv *rsa.PrivateKey, sshPriv ssh.Signer, err error) {
p("GenRSAKeyPair called.")
privKey, err := rsa.GenerateKey(cryptrand.Reader, bits)
panicOn(err)
var pubKey *rsa.PublicKey = privKey.Public().(*rsa.PublicKey)
err = privKey.Validate()
panicOn(err)
// write to disk
// save to pem: serialize private key
privBytes := pem.EncodeToMemory(
&pem.Block{
Type: "RSA PRIVATE KEY",
Bytes: x509.MarshalPKCS1PrivateKey(privKey),
},
)
// sshPrivKey is the ssh.Signer, 2nd returned value.
sshPrivKey, err := ssh.ParsePrivateKey(privBytes)
panicOn(err)
if rsaFile != "" {
p("GenRSAKeyPair is serializing to rsaFile -> '%s' and .pub", rsaFile)
// serialize public key
pubBytes := RSAToSSHPublicKey(pubKey)
if email != "" {
p("adding in email")
var by bytes.Buffer
fmt.Fprintf(&by, " %s\n", email)
n := len(pubBytes)
// overwrite the newline
pubBytes = append(pubBytes[:n-1], by.Bytes()...)
}
err = ioutil.WriteFile(rsaFile, privBytes, 0600)
panicOn(err)
err = ioutil.WriteFile(rsaFile+".pub", pubBytes, 0600)
panicOn(err)
}
return privKey, sshPrivKey, nil
}
// RSAToSSHPublicKey convert an RSA Public Key to the SSH authorized_keys format.
func RSAToSSHPublicKey(pubkey *rsa.PublicKey) []byte {
pub, err := ssh.NewPublicKey(pubkey)
panicOn(err)
return ssh.MarshalAuthorizedKey(pub)
}
// LoadRSAPrivateKey reads a private key from path on disk.
func LoadRSAPrivateKey(path string) (privkey ssh.Signer, err error) {
buf, err := ioutil.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("got error '%s' trying to read path '%s'", err, path)
}
privkey, err = ssh.ParsePrivateKey(buf)
if err != nil {
return nil, fmt.Errorf("got error '%s' trying to parse private key from path '%s'", err, path)
}
return privkey, err
}
// LoadRSAPublicKey reads a public key from path on disk. By convention
// these keys end in '.pub', but that is not verified here.
func LoadRSAPublicKey(path string) (pubkey ssh.PublicKey, err error) {
var buf []byte
buf, err = ioutil.ReadFile(path)
if err != nil {
return
}
pubkey, _, _, _, err = ssh.ParseAuthorizedKey(buf)
return
}