summaryrefslogtreecommitdiff
path: root/lib/crypto/gpg/gpgbin/sign.go
blob: 35ab7e7f0dac55ca8a5861862a95a269bb53e241 (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
package gpgbin

import (
	"bytes"
	"io"

	"git.sr.ht/~rjarry/aerc/models"
)

// Sign creates a detached signature based on the contents of r
func Sign(r io.Reader, from string) ([]byte, string, error) {
	args := []string{
		"--armor",
		"--detach-sign",
		"--default-key", from,
	}

	g := newGpg(r, args)
	g.cmd.Run()

	outRdr := bytes.NewReader(g.stdout.Bytes())
	var md models.MessageDetails
	parse(outRdr, &md)
	var buf bytes.Buffer
	io.Copy(&buf, md.Body)
	return buf.Bytes(), md.Micalg, nil
}