1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-31 04:14:37 +00:00

ssh-to-pgp: make armor encoding the default

This commit is contained in:
Jörg Thalheim 2020-07-13 08:05:03 +01:00
parent bdfd4c3389
commit 71976f5a55
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -7,12 +7,10 @@ import (
"io"
"io/ioutil"
"os"
"syscall"
"github.com/Mic92/sops-nix/pkgs/sshkeys"
"golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/armor"
"golang.org/x/crypto/ssh/terminal"
)
type options struct {
@ -24,17 +22,10 @@ func parseFlags(args []string) options {
f := flag.NewFlagSet(args[0], flag.ExitOnError)
f.StringVar(&opts.publicKey, "pubkey", "", "Path to public key. Reads from standard input if equal to '-'")
f.StringVar(&opts.privateKey, "privkey", "", "Path to private key. Reads from standard input if equal to '-'")
f.StringVar(&opts.format, "format", "auto", "GPG format encoding (auto|binary|armor)")
f.StringVar(&opts.format, "format", "armor", "GPG format encoding (binary|armor)")
f.StringVar(&opts.out, "o", "-", "Output path. Prints by default to standard output")
f.Parse(args[1:])
if opts.format == "auto" {
if opts.out == "-" && terminal.IsTerminal(syscall.Stdout) {
opts.format = "armor"
} else {
opts.format = "binary"
}
}
if opts.publicKey != "" && opts.privateKey != "" {
fmt.Fprintln(os.Stderr, "-pubkey and -privkey are mutual exclusive")
os.Exit(1)