-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
ssh.go
179 lines (160 loc) · 4.34 KB
/
ssh.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright 2019 Google LLC
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// From:
// https://github.com/FiloSottile/age/blob/master/internal/age/ssh.go
package keys
import (
"bufio"
"bytes"
"crypto/ed25519"
"crypto/rsa"
"encoding/base64"
"fmt"
"strings"
"github.com/ScaleFT/sshkeys"
"github.com/pkg/errors"
"golang.org/x/crypto/ssh"
)
// ParseSSHPublicKey parses a SSH public key.
func ParseSSHPublicKey(s string) (Key, error) {
pk, _, _, _, err := ssh.ParseAuthorizedKey([]byte(s))
if err != nil {
return nil, fmt.Errorf("malformed SSH recipient: %q: %v", s, err)
}
switch t := pk.Type(); t {
case "ssh-rsa":
return nil, errors.Errorf("SSH RSA key not currently supported")
case "ssh-ed25519":
if pk, ok := pk.(ssh.CryptoPublicKey); ok {
if pk, ok := pk.CryptoPublicKey().(ed25519.PublicKey); ok {
if len(pk) != 32 {
return nil, errors.Errorf("invalid length for ssh ed25519 public key")
}
return NewEdX25519PublicKey(Bytes32(pk)), nil
}
}
return nil, nil
default:
return nil, fmt.Errorf("unknown SSH recipient type: %q", t)
}
}
func trimLineSpace(b []byte) ([]byte, error) {
scanner := bufio.NewScanner(bytes.NewBuffer(b))
out := []string{}
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
out = append(out, line)
}
if err := scanner.Err(); err != nil {
return []byte{}, err
}
return []byte(strings.Join(out, "\n")), nil
}
// ParseSSHKey parses a SSH private key.
func ParseSSHKey(pemBytes []byte, passphrase []byte, trim bool) (Key, error) {
if trim {
b, err := trimLineSpace(pemBytes)
if err != nil {
return nil, err
}
pemBytes = b
}
var k interface{}
if len(passphrase) > 0 {
var err error
k, err = ssh.ParseRawPrivateKeyWithPassphrase(pemBytes, passphrase)
if err != nil {
return nil, errors.Wrapf(err, "failed to parse ssh key with passphrase")
}
} else {
var err error
k, err = ssh.ParseRawPrivateKey(pemBytes)
if err != nil {
return nil, errors.Wrapf(err, "failed to parse ssh key")
}
}
switch k := k.(type) {
case *ed25519.PrivateKey:
if len(*k) != 64 {
return nil, errors.Errorf("invalid ed25519 private key length")
}
return NewEdX25519KeyFromPrivateKey(Bytes64(*k)), nil
case ed25519.PrivateKey:
if len(k) != 64 {
return nil, errors.Errorf("invalid ed25519 private key length")
}
return NewEdX25519KeyFromPrivateKey(Bytes64(k)), nil
case *rsa.PrivateKey:
return nil, errors.Errorf("SSH RSA key not currently supported")
}
return nil, fmt.Errorf("unsupported SSH identity type: %T", k)
}
// EncodeToSSH encodes a EdX25519Key for SSH.
func (k *EdX25519Key) EncodeToSSH(password []byte) ([]byte, error) {
key := ed25519.PrivateKey(k.Private())
return sshkeys.Marshal(key, &sshkeys.MarshalOptions{
Passphrase: password,
})
}
// EncodeToSSHAuthorized encodes a EdX25519PublicKey for SSH.
func (k *EdX25519PublicKey) EncodeToSSHAuthorized() []byte {
b := &bytes.Buffer{}
b.WriteString(ssh.KeyAlgoED25519)
b.WriteByte(' ')
e := base64.NewEncoder(base64.StdEncoding, b)
w := struct {
Name string
KeyBytes []byte
}{
ssh.KeyAlgoED25519,
k.Bytes(),
}
mb := ssh.Marshal(&w)
if _, err := e.Write(mb); err != nil {
panic(err)
}
if err := e.Close(); err != nil {
panic(err)
}
// b.WriteByte('\n')
return b.Bytes()
}
// SSHSigner interface.
func (k *EdX25519Key) SSHSigner() ssh.Signer {
signer, err := ssh.NewSignerFromKey(k.Signer())
if err != nil {
panic(err)
}
return signer
}
// EncodeSSHKey encodes key to SSH.
func EncodeSSHKey(key Key, password string) (string, error) {
switch k := key.(type) {
case *EdX25519Key:
out, err := k.EncodeToSSH([]byte(password))
if err != nil {
return "", err
}
return string(out), nil
case *EdX25519PublicKey:
if password != "" {
return "", errors.Errorf("password not supported when exporting public key")
}
return string(k.EncodeToSSHAuthorized()), nil
default:
return "", errors.Errorf("unsupported key type")
}
}
// DecodeSSHKey decodes SSH key.
func DecodeSSHKey(s string, password string) (Key, error) {
if strings.HasPrefix(s, "ssh-ed25519 ") {
if password != "" {
return nil, errors.Errorf("password unsupported for ssh-ed25519 public key")
}
return ParseSSHPublicKey(s)
}
return ParseSSHKey([]byte(s), []byte(password), true)
}