forked from apognu/wgctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keys.go
49 lines (38 loc) · 938 Bytes
/
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
package main
import (
"bufio"
"encoding/base64"
"fmt"
"os"
"strings"
"github.com/apognu/wgctl/lib"
"github.com/mdlayher/wireguardctrl/wgtypes"
"github.com/sirupsen/logrus"
)
func generateKey() {
k, err := lib.GeneratePrivateKey()
if err != nil {
logrus.Fatalf("could not generate private key: %s", err.Error())
}
fmt.Println(k.String())
}
func generatePublicKey() {
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
b, err := base64.StdEncoding.DecodeString(strings.TrimSpace(scanner.Text()))
if err != nil {
logrus.Fatalf("could not read private key from stdin: %s", err.Error())
}
if len(b) != wgtypes.KeyLen {
logrus.Fatalf("the key read from stdin is of an invalid size")
}
k := lib.ComputePublicKey(b)
fmt.Println(k.String())
}
func generatePSK() {
k, err := lib.GeneratePSK()
if err != nil {
logrus.Fatalf("could not generate private key: %s", err.Error())
}
fmt.Println(k.String())
}