b57fceaad4
Add compose command ("attach-key") to attach the public key associated with the sending account. Public key is attached in ascii armor format, with the mimetype set according to RFC 3156 ("application/pgp-keys"). Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Tested-by: Koni Marti <koni.marti@gmail.com>
34 lines
835 B
Go
34 lines
835 B
Go
package crypto
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"log"
|
|
|
|
"git.sr.ht/~rjarry/aerc/lib/crypto/gpg"
|
|
"git.sr.ht/~rjarry/aerc/lib/crypto/pgp"
|
|
"git.sr.ht/~rjarry/aerc/models"
|
|
"github.com/ProtonMail/go-crypto/openpgp"
|
|
"github.com/emersion/go-message/mail"
|
|
)
|
|
|
|
type Provider interface {
|
|
Decrypt(io.Reader, openpgp.PromptFunction) (*models.MessageDetails, error)
|
|
Encrypt(*bytes.Buffer, []string, string, openpgp.PromptFunction, *mail.Header) (io.WriteCloser, error)
|
|
Sign(*bytes.Buffer, string, openpgp.PromptFunction, *mail.Header) (io.WriteCloser, error)
|
|
ImportKeys(io.Reader) error
|
|
Init(*log.Logger) error
|
|
Close()
|
|
GetSignerKeyId(string) (string, error)
|
|
GetKeyId(string) (string, error)
|
|
ExportKey(string) (io.Reader, error)
|
|
}
|
|
|
|
func New(s string) Provider {
|
|
switch s {
|
|
case "gpg":
|
|
return &gpg.Mail{}
|
|
default:
|
|
return &pgp.Mail{}
|
|
}
|
|
}
|