This commit is contained in:
emersion 2017-08-06 18:58:18 +02:00
parent d579059ccf
commit 360f954626
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
3 changed files with 13 additions and 13 deletions

View File

@ -13,11 +13,11 @@ import (
type encryptWriter struct {
multipart *multipart.Writer
armored io.WriteCloser
armored io.WriteCloser
cleartext io.WriteCloser
h textproto.MIMEHeader
to []*openpgp.Entity
h textproto.MIMEHeader
to []*openpgp.Entity
signed *openpgp.Entity
config *packet.Config
}
@ -95,8 +95,8 @@ func Encrypt(w io.Writer, h textproto.MIMEHeader, to []*openpgp.Entity, signed *
return &encryptWriter{
multipart: multipart.NewWriter(w),
h: h,
to: to,
h: h,
to: to,
signed: signed,
config: config,
}

View File

@ -27,7 +27,7 @@ func ExampleEncrypt() {
th.SetContentType("text/plain", nil)
// Create a new PGP/MIME writer
var ciphertext struct{*message.Writer}
var ciphertext struct{ *message.Writer }
cleartext := pgpmime.Encrypt(&ciphertext, textproto.MIMEHeader(th.Header), to, nil, nil)
// Add the PGP/MIME Content-Type header field to the mail header
@ -73,7 +73,7 @@ func ExampleSign() {
bh := mail.NewTextHeader()
bh.SetContentType("text/plain", nil)
var signed struct{*message.Writer}
var signed struct{ *message.Writer }
body := pgpmime.Sign(&signed, textproto.MIMEHeader(bh.Header), e, nil)
mh.Set("Content-Type", body.ContentType())

12
sign.go
View File

@ -2,11 +2,11 @@ package pgpmime
import (
"bytes"
"crypto"
"io"
"mime"
"mime/multipart"
"net/textproto"
"crypto"
"golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/packet"
@ -35,10 +35,10 @@ func hashName(h crypto.Hash) string {
type signWriter struct {
multipart *multipart.Writer
body io.WriteCloser
body io.WriteCloser
signature <-chan io.Reader
h textproto.MIMEHeader
h textproto.MIMEHeader
signer *openpgp.Entity
config *packet.Config
}
@ -59,7 +59,7 @@ func (sw *signWriter) open() error {
ch <- &b
}()
sw.body = struct{
sw.body = struct {
io.Writer
io.Closer
}{
@ -108,7 +108,7 @@ func (sw *signWriter) Close() error {
func (sw *signWriter) ContentType() string {
return mime.FormatMediaType("multipart/signed", map[string]string{
"boundary": sw.multipart.Boundary(),
"micalg": "pgp-" + hashName(sw.config.Hash()),
"micalg": "pgp-" + hashName(sw.config.Hash()),
"protocol": "application/pgp-signature",
})
}
@ -118,7 +118,7 @@ func Sign(w io.Writer, h textproto.MIMEHeader, signer *openpgp.Entity, config *p
return &signWriter{
multipart: multipart.NewWriter(w),
h: h,
h: h,
signer: signer,
config: config,
}