mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
186 lines
5.0 KiB
Go
186 lines
5.0 KiB
Go
package crypto
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"io/ioutil"
|
|
"runtime"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/ProtonMail/go-crypto/openpgp"
|
|
"github.com/ProtonMail/go-crypto/openpgp/packet"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// AttachmentProcessor keeps track of the progress of encrypting an attachment
|
|
// (optimized for encrypting large files).
|
|
type AttachmentProcessor struct {
|
|
w *io.WriteCloser
|
|
pipe *io.PipeWriter
|
|
done sync.WaitGroup
|
|
split *PGPSplitMessage
|
|
garbageCollector int
|
|
err error
|
|
}
|
|
|
|
// Process writes attachment data to be encrypted.
|
|
func (ap *AttachmentProcessor) Process(plainData []byte) {
|
|
if _, err := (*ap.w).Write(plainData); err != nil {
|
|
panic(err)
|
|
}
|
|
if ap.garbageCollector > 0 {
|
|
defer runtime.GC()
|
|
}
|
|
}
|
|
|
|
// Finish closes the attachment and returns the encrypted data.
|
|
func (ap *AttachmentProcessor) Finish() (*PGPSplitMessage, error) {
|
|
if ap.err != nil {
|
|
return nil, ap.err
|
|
}
|
|
|
|
if err := (*ap.w).Close(); err != nil {
|
|
return nil, errors.Wrap(err, "gopengpp: unable to close writer")
|
|
}
|
|
|
|
if ap.garbageCollector > 0 {
|
|
ap.w = nil
|
|
runtime.GC()
|
|
}
|
|
|
|
if err := (*ap.pipe).Close(); err != nil {
|
|
return nil, errors.Wrap(err, "gopengpp: unable to close pipe")
|
|
}
|
|
|
|
ap.done.Wait()
|
|
if ap.err != nil {
|
|
return nil, ap.err
|
|
}
|
|
splitMsg := ap.split
|
|
|
|
if ap.garbageCollector > 0 {
|
|
ap.pipe = nil
|
|
ap.split = nil
|
|
defer runtime.GC()
|
|
}
|
|
return splitMsg, nil
|
|
}
|
|
|
|
// newAttachmentProcessor creates an AttachmentProcessor which can be used to encrypt
|
|
// a file. It takes an estimatedSize and fileName as hints about the file.
|
|
func (keyRing *KeyRing) newAttachmentProcessor(
|
|
estimatedSize int, filename string, isBinary bool, modTime uint32, garbageCollector int, //nolint:unparam
|
|
) (*AttachmentProcessor, error) {
|
|
attachmentProc := &AttachmentProcessor{}
|
|
// You could also add these one at a time if needed.
|
|
attachmentProc.done.Add(1)
|
|
attachmentProc.garbageCollector = garbageCollector
|
|
|
|
hints := &openpgp.FileHints{
|
|
FileName: filename,
|
|
IsBinary: isBinary,
|
|
ModTime: time.Unix(int64(modTime), 0),
|
|
}
|
|
|
|
config := &packet.Config{
|
|
DefaultCipher: packet.CipherAES256,
|
|
Time: getTimeGenerator(),
|
|
}
|
|
|
|
reader, writer := io.Pipe()
|
|
|
|
go func() {
|
|
defer attachmentProc.done.Done()
|
|
ciphertext, _ := ioutil.ReadAll(reader)
|
|
message := &PGPMessage{
|
|
Data: ciphertext,
|
|
}
|
|
split, splitError := message.SplitMessage()
|
|
if attachmentProc.err == nil {
|
|
attachmentProc.err = splitError
|
|
}
|
|
attachmentProc.split = split
|
|
}()
|
|
|
|
var ew io.WriteCloser
|
|
var encryptErr error
|
|
ew, encryptErr = openpgp.Encrypt(writer, keyRing.entities, nil, hints, config)
|
|
if encryptErr != nil {
|
|
return nil, errors.Wrap(encryptErr, "gopengpp: unable to encrypt attachment")
|
|
}
|
|
attachmentProc.w = &ew
|
|
attachmentProc.pipe = writer
|
|
|
|
return attachmentProc, nil
|
|
}
|
|
|
|
// EncryptAttachment encrypts a file given a PlainMessage and a filename.
|
|
// If given a filename it will override the information in the PlainMessage object.
|
|
// Returns a PGPSplitMessage containing a session key packet and symmetrically encrypted data.
|
|
// Specifically designed for attachments rather than text messages.
|
|
func (keyRing *KeyRing) EncryptAttachment(message *PlainMessage, filename string) (*PGPSplitMessage, error) {
|
|
if filename == "" {
|
|
filename = message.Filename
|
|
}
|
|
|
|
ap, err := keyRing.newAttachmentProcessor(
|
|
len(message.GetBinary()),
|
|
filename,
|
|
message.IsBinary(),
|
|
message.Time,
|
|
-1,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ap.Process(message.GetBinary())
|
|
split, err := ap.Finish()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return split, nil
|
|
}
|
|
|
|
// NewLowMemoryAttachmentProcessor creates an AttachmentProcessor which can be used
|
|
// to encrypt a file. It takes an estimatedSize and filename as hints about the
|
|
// file. It is optimized for low-memory environments and collects garbage every
|
|
// megabyte.
|
|
func (keyRing *KeyRing) NewLowMemoryAttachmentProcessor(
|
|
estimatedSize int, filename string,
|
|
) (*AttachmentProcessor, error) {
|
|
return keyRing.newAttachmentProcessor(estimatedSize, filename, true, uint32(GetUnixTime()), 1<<20)
|
|
}
|
|
|
|
// DecryptAttachment takes a PGPSplitMessage, containing a session key packet and symmetrically encrypted data
|
|
// and returns a decrypted PlainMessage
|
|
// Specifically designed for attachments rather than text messages.
|
|
func (keyRing *KeyRing) DecryptAttachment(message *PGPSplitMessage) (*PlainMessage, error) {
|
|
privKeyEntries := keyRing.entities
|
|
|
|
keyReader := bytes.NewReader(message.GetBinaryKeyPacket())
|
|
dataReader := bytes.NewReader(message.GetBinaryDataPacket())
|
|
|
|
encryptedReader := io.MultiReader(keyReader, dataReader)
|
|
|
|
config := &packet.Config{Time: getTimeGenerator()}
|
|
|
|
md, err := openpgp.ReadMessage(encryptedReader, privKeyEntries, nil, config)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "gopengpp: unable to read attachment")
|
|
}
|
|
|
|
decrypted := md.UnverifiedBody
|
|
b, err := ioutil.ReadAll(decrypted)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "gopengpp: unable to read attachment body")
|
|
}
|
|
|
|
return &PlainMessage{
|
|
Data: b,
|
|
TextType: !md.LiteralData.IsBinary,
|
|
Filename: md.LiteralData.FileName,
|
|
Time: md.LiteralData.Time,
|
|
}, nil
|
|
}
|