Невозможно расшифровать бинарный файл - PullRequest
0 голосов
/ 23 июня 2018

Я пытался зашифровать файл docx с помощью открытого ключа GPG и перейти в библиотеку openpgp. Он шифрует документ, но я не могу расшифровать его, используя свой закрытый ключ.

Уже пытался сделать то же самое с простым текстовым файлом, и расшифровка работала без проблем.

Что мне здесь не хватает?

package main

import (
    "golang.org/x/crypto/openpgp"
    "bytes"
    "io/ioutil"
    "fmt"
    "os"
)

func main() {
    entitylist, _ := openpgp.ReadArmoredKeyRing(bytes.NewBufferString(...))

    buf := new(bytes.Buffer)
    w, _ := openpgp.Encrypt(buf, entitylist, nil, nil, nil)
    b, _ := ioutil.ReadFile("in.docx")

    w.Write(b)
    w.Close()

    bts, _ := ioutil.ReadAll(buf)
    ioutil.WriteFile("out.gpg", bts, os.ModePerm)
}

1 Ответ

0 голосов
/ 23 июня 2018

Извините, ребята, что нашли время. Кажется, функция Encode принимает FileHints struct, поэтому передача с двоичным кодом из решает проблему

w, _ := openpgp.Encrypt(buf, entitylist, nil, &openpgp.FileHints{IsBinary: true}, nil)

Подробнее о FileHints

// FileHints contains metadata about encrypted files. This metadata is, itself,
// encrypted.
type FileHints struct {
    // IsBinary can be set to hint that the contents are binary data.
    IsBinary bool
    // FileName hints at the name of the file that should be written. It's
    // truncated to 255 bytes if longer. It may be empty to suggest that the
    // file should not be written to disk. It may be equal to "_CONSOLE" to
    // suggest the data should not be written to disk.
    FileName string
    // ModTime contains the modification time of the file, or the zero time if not applicable.
    ModTime time.Time
}

Спасибо.

...