summaryrefslogtreecommitdiff
path: root/lib/crypto/gpg/gpgbin/keys.go
blob: bef90cf698664a11b93ea4be81ca84d8f4d0a09b (plain)
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
package gpgbin

import (
	"bytes"
	"fmt"
	"io"
	"os/exec"
	"strings"
)

// GetPrivateKeyId runs gpg --list-secret-keys s
func GetPrivateKeyId(s string) (string, error) {
	private := true
	id := getKeyId(s, private)
	if id == "" {
		return "", fmt.Errorf("no private key found")
	}
	return id, nil
}

// GetKeyId runs gpg --list-keys s
func GetKeyId(s string) (string, error) {
	private := false
	id := getKeyId(s, private)
	if id == "" {
		return "", fmt.Errorf("no public key found")
	}
	return id, nil
}

// ExportPublicKey exports the public key identified by k in armor format
func ExportPublicKey(k string) (io.Reader, error) {
	cmd := exec.Command("gpg", "--export", "--armor", k)

	var outbuf bytes.Buffer
	var stderr strings.Builder
	cmd.Stdout = &outbuf
	cmd.Stderr = &stderr
	cmd.Run()
	if strings.Contains(stderr.String(), "gpg") {
		return nil, fmt.Errorf("gpg: error exporting key")
	}
	return &outbuf, nil
}