mirror of https://git.sr.ht/~rjarry/aerc
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
558 B
Go
30 lines
558 B
Go
package gpgbin
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"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()
|
|
|
|
var md models.MessageDetails
|
|
err := parseStatusFd(bytes.NewReader(g.stderr.Bytes()), &md)
|
|
if err != nil {
|
|
return nil, "", fmt.Errorf("failed to parse messagedetails: %w", err)
|
|
}
|
|
|
|
return g.stdout.Bytes(), md.Micalg, nil
|
|
}
|