This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keys.go
108 lines (86 loc) · 2.11 KB
/
keys.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
package entities
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"github.com/teris-io/shortid"
"golang.org/x/crypto/ssh"
"log"
"time"
)
var(
KeyStatusNew = "NEW"
KeyStatusAdapting = "ADAPTING"
KeyStatusActive = "ACTIVE"
KeyStatusFailing = "FAILING"
KeyStatusDeleted = "DELETED"
)
type SSHKey struct {
ID string `json:"id""`
ProviderID string `json:"providerId"`
Name string `json:"name"`
Status string `json:"status"`
Fingerprint string `json:"fingerprint"`
Error string `json:"error"`
PrivateKey string `json:"privateKey"`
PublicKey string `json:"publicKey"`
Created time.Time `json:"created"`
Updated time.Time `json:"updated"`
}
func(k *SSHKey) NeedsAdapting() bool{
if(k.Status == KeyStatusNew){
return true
}
return false
}
func GetPublicKeys() (*SSHKey,*rsa.PrivateKey, error){
id, err := shortid.Generate()
if(err!=nil){
return nil,nil, err
}
privateKey, err := rsa.GenerateKey(rand.Reader, 4096)
if err != nil {
return nil,nil, err
}
// Validate Private Key
err = privateKey.Validate()
if err != nil {
return nil,nil, err
}
pubKey, err := generatePublicKey(&privateKey.PublicKey)
if(err!=nil){
return nil, privateKey, err
}
return &SSHKey{
ID: id,
Name: id,
PublicKey: string(pubKey),
Status: KeyStatusNew,
},privateKey, nil
}
// encodePrivateKeyToPEM encodes Private Key from RSA to PEM format
func encodePrivateKeyToPEM(privateKey *rsa.PrivateKey) []byte {
// Get ASN.1 DER format
privDER := x509.MarshalPKCS1PrivateKey(privateKey)
// pem.Block
privBlock := pem.Block{
Type: "RSA PRIVATE KEY",
Headers: nil,
Bytes: privDER,
}
// Private key in PEM format
privatePEM := pem.EncodeToMemory(&privBlock)
return privatePEM
}
// generatePublicKey take a rsa.PublicKey and return bytes suitable for writing to .pub file
// returns in the format "ssh-rsa ..."
func generatePublicKey(privatekey *rsa.PublicKey) ([]byte, error) {
publicRsaKey, err := ssh.NewPublicKey(privatekey)
if err != nil {
return nil, err
}
pubKeyBytes := ssh.MarshalAuthorizedKey(publicRsaKey)
log.Println("Public key generated")
return pubKeyBytes, nil
}