forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_pgp_verify.go
114 lines (101 loc) · 2.52 KB
/
cmd_pgp_verify.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Copyright 2015 Keybase, Inc. All rights reserved. Use of
// this source code is governed by the included BSD license.
package client
import (
"io/ioutil"
"golang.org/x/net/context"
"github.com/keybase/cli"
"github.com/keybase/client/go/libcmdline"
"github.com/keybase/client/go/libkb"
keybase1 "github.com/keybase/client/go/protocol"
rpc "github.com/keybase/go-framed-msgpack-rpc"
)
func NewCmdPGPVerify(cl *libcmdline.CommandLine, g *libkb.GlobalContext) cli.Command {
return cli.Command{
Name: "verify",
Usage: "PGP verify message or file signatures for keybase users",
Action: func(c *cli.Context) {
cl.ChooseCommand(&CmdPGPVerify{Contextified: libkb.NewContextified(g)}, "verify", c)
},
Flags: []cli.Flag{
cli.StringFlag{
Name: "d, detached",
Usage: "Specify a detached signature file.",
},
cli.StringFlag{
Name: "i, infile",
Usage: "Specify an input file.",
},
cli.StringFlag{
Name: "m, message",
Usage: "Provide the message on the command line.",
},
cli.StringFlag{
Name: "S, signed-by",
Usage: "Assert signed by the given user (can use user assertion format).",
},
},
}
}
type CmdPGPVerify struct {
libkb.Contextified
UnixFilter
detachedFilename string
detachedData []byte
signedBy string
}
func (c *CmdPGPVerify) Run() error {
cli, err := GetPGPClient()
if err != nil {
return err
}
protocols := []rpc.Protocol{
NewStreamUIProtocol(),
NewSecretUIProtocol(c.G()),
NewIdentifyTrackUIProtocol(c.G()),
}
if err := RegisterProtocols(protocols); err != nil {
return err
}
_, src, err := c.ClientFilterOpen()
if err != nil {
return err
}
arg := keybase1.PGPVerifyArg{
Source: src,
Opts: keybase1.PGPVerifyOptions{
Signature: c.detachedData,
SignedBy: c.signedBy,
},
}
_, err = cli.PGPVerify(context.TODO(), arg)
cerr := c.Close(err)
return libkb.PickFirstError(err, cerr)
}
func (c *CmdPGPVerify) ParseArgv(ctx *cli.Context) error {
if len(ctx.Args()) > 0 {
return UnexpectedArgsError("pgp verify")
}
msg := ctx.String("message")
infile := ctx.String("infile")
if err := c.FilterInit(msg, infile, "/dev/null"); err != nil {
return err
}
c.signedBy = ctx.String("signed-by")
c.detachedFilename = ctx.String("detached")
if len(c.detachedFilename) > 0 {
data, err := ioutil.ReadFile(c.detachedFilename)
if err != nil {
return err
}
c.detachedData = data
}
return nil
}
func (c *CmdPGPVerify) GetUsage() libkb.Usage {
return libkb.Usage{
Config: true,
API: true,
KbKeyring: true,
}
}