go fmt
This commit is contained in:
parent
d579059ccf
commit
360f954626
@ -27,7 +27,7 @@ func ExampleEncrypt() {
|
|||||||
th.SetContentType("text/plain", nil)
|
th.SetContentType("text/plain", nil)
|
||||||
|
|
||||||
// Create a new PGP/MIME writer
|
// 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)
|
cleartext := pgpmime.Encrypt(&ciphertext, textproto.MIMEHeader(th.Header), to, nil, nil)
|
||||||
|
|
||||||
// Add the PGP/MIME Content-Type header field to the mail header
|
// Add the PGP/MIME Content-Type header field to the mail header
|
||||||
@ -73,7 +73,7 @@ func ExampleSign() {
|
|||||||
bh := mail.NewTextHeader()
|
bh := mail.NewTextHeader()
|
||||||
bh.SetContentType("text/plain", nil)
|
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)
|
body := pgpmime.Sign(&signed, textproto.MIMEHeader(bh.Header), e, nil)
|
||||||
|
|
||||||
mh.Set("Content-Type", body.ContentType())
|
mh.Set("Content-Type", body.ContentType())
|
||||||
|
4
sign.go
4
sign.go
@ -2,11 +2,11 @@ package pgpmime
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"crypto"
|
||||||
"io"
|
"io"
|
||||||
"mime"
|
"mime"
|
||||||
"mime/multipart"
|
"mime/multipart"
|
||||||
"net/textproto"
|
"net/textproto"
|
||||||
"crypto"
|
|
||||||
|
|
||||||
"golang.org/x/crypto/openpgp"
|
"golang.org/x/crypto/openpgp"
|
||||||
"golang.org/x/crypto/openpgp/packet"
|
"golang.org/x/crypto/openpgp/packet"
|
||||||
@ -59,7 +59,7 @@ func (sw *signWriter) open() error {
|
|||||||
ch <- &b
|
ch <- &b
|
||||||
}()
|
}()
|
||||||
|
|
||||||
sw.body = struct{
|
sw.body = struct {
|
||||||
io.Writer
|
io.Writer
|
||||||
io.Closer
|
io.Closer
|
||||||
}{
|
}{
|
||||||
|
Loading…
Reference in New Issue
Block a user