-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
144 lines (130 loc) · 4.07 KB
/
main.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package main
import (
"fmt"
"os"
"time"
"github.com/jorelosorio/go-signature/signature"
"github.com/urfave/cli/v2"
)
func main() {
app := &cli.App{
Name: "Signature",
Usage: "sign",
Description: "A command-line tool playground to encode, sign and decode data",
Version: "1.0.0",
Compiled: time.Now(),
Authors: []*cli.Author{
{
Name: "Jorge Osorio",
Email: "[email protected]",
},
},
Commands: []*cli.Command{
{
Name: "create-keys",
Aliases: []string{"cks"},
Usage: "Creates a new pair of private and public keys",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "export-path",
Aliases: []string{"ep"},
Usage: "Exports keys as .pem files in the specified path",
Required: true,
},
},
Action: func(c *cli.Context) error {
if outputPath := c.String("export-path"); outputPath != "" {
asymmetricKey := signature.NewAsymmetricKey()
asymmetricKey.ExportPrivateKeyToPem(outputPath)
asymmetricKey.ExportPublicKeyToPem(outputPath)
}
return nil
},
},
{
Name: "encode-message",
Aliases: []string{"emsg"},
Usage: "Creates a new message, sign it and encode it using -base64 encoding-",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "sender",
Aliases: []string{"s"},
Usage: "Who sends the message?",
Required: true,
},
&cli.StringFlag{
Name: "payload",
Aliases: []string{"p"},
Usage: "Message payload",
},
&cli.StringFlag{
Name: "payload-path",
Aliases: []string{"pp"},
Usage: "Message payload from a file",
},
&cli.StringFlag{
Name: "private-key-path",
Aliases: []string{"prkp"},
Usage: "The private key path to sign the message",
Required: true,
},
// TODO: Include an option to export data to a file
},
Action: func(c *cli.Context) error {
if sender, payload, payloadPath, prkPath := c.String("sender"), c.String("payload"), c.String("payload-path"), c.String("private-key-path"); sender != "" && prkPath != "" && (payload != "" || payloadPath != "") {
asymmetricKey := signature.AsymmetricKey{}
asymmetricKey.ImportPrivateKey(prkPath)
payloadData := []byte(payload)
if payloadPath != "" {
payloadData = signature.ReadFile(payloadPath)
}
message := &signature.Message{Sender: sender, Payload: payloadData}
signatureByte, encodedContainer := signature.PackAndSignMessage(message, &asymmetricKey)
fmt.Printf("Signature\n==========\n%s\n\n", signature.EncodeBase64(signatureByte))
fmt.Printf("Container data\n==========\n%s\n", signature.EncodeBase64(encodedContainer))
}
return nil
},
},
{
Name: "decode-message",
Aliases: []string{"dmsg"},
Usage: "Decode a message, verifies the signature and print out the message content",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "base64-message",
Aliases: []string{"b64msg"},
Usage: "Encoded message in Base64 format",
Required: true,
},
&cli.StringFlag{
Name: "public-key-path",
Aliases: []string{"pkp"},
Usage: "The public key path to verify the message",
Required: true,
},
},
Action: func(c *cli.Context) error {
if base64EncodedMessage, pkPath := c.String("base64-message"), c.String("public-key-path"); base64EncodedMessage != "" && pkPath != "" {
asymmetricKey := signature.AsymmetricKey{}
asymmetricKey.ImportPublicKey(pkPath)
decodedMessage := signature.DecodeBase64(base64EncodedMessage)
messageContainer := signature.DecodeContainer(decodedMessage)
if isAuthentic := signature.IsAuthentic(messageContainer, &asymmetricKey); isAuthentic {
fmt.Println("The message is authentic!")
fmt.Println(messageContainer.Message)
os.Exit(0)
}
fmt.Println("The message is not authentic!")
}
return nil
},
},
},
}
err := app.Run(os.Args)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}