-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
227 lines (191 loc) · 3.97 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package main
import (
"bufio"
"compress/gzip"
cryptorand "crypto/rand"
"errors"
"fmt"
"io"
"os"
"lukechampine.com/blake3"
)
const VERSION = "0.0.1"
func main() {
parseCliOptions()
if cliOpt.help {
helpText()
os.Exit(0)
}
if cliOpt.version {
fmt.Println(VERSION)
os.Exit(0)
}
if cliOpt.generate {
G()
}
if cliOpt.sign {
S()
}
if cliOpt.verify {
V()
}
}
func G() {
if cliOpt.secKey == "" {
fmt.Println("Missing seckey option '-s'")
os.Exit(1)
}
if cliOpt.pubKey == "" {
fmt.Println("Missing pubkey option '-p'")
os.Exit(1)
}
passphrase := fetchPassphrase()
pub, sec, err := GenerateKey(cryptorand.Reader)
if err != nil {
fmt.Printf("Failed to generate keys: %v", err)
os.Exit(1)
}
if err := WriteSecKey(sec, passphrase); err != nil {
fmt.Printf("Failed to write secret key: %v", err)
os.Exit(1)
}
if err := WritePubKey(pub); err != nil {
fmt.Printf("Failed to write public key: %v", err)
os.Exit(1)
}
os.Exit(0)
}
const MB = 1 << 10 << 10
func S() {
if cliOpt.secKey == "" {
fmt.Println("Missing seckey option '-s'")
os.Exit(1)
}
if cliOpt.fin == "" {
fmt.Println("Missing file-in option '-fin'")
os.Exit(1)
}
if cliOpt.fout == "" {
fmt.Println("Missing file-out option '-fout'")
os.Exit(1)
}
var passphrase []byte
if cliOpt.pp == "" {
passphrase = fetchPassphrase()
} else {
passphrase = []byte(cliOpt.pp)
}
sec, err := ReadSecKey(cliOpt.secKey, passphrase)
if err != nil {
fmt.Printf("Failed to read secret key: %v", err)
os.Exit(1)
}
// open file and read gzip content
fin, err := os.Open(cliOpt.fin)
if err != nil {
fmt.Printf("Failed to open input file: %v", err)
os.Exit(1)
}
defer fin.Close()
gr, err := gzip.NewReader(fin)
if err != nil {
fmt.Printf("Input file not a valid gzip: %v", err)
os.Exit(1)
}
hsh := blake3.New(32, nil)
// run gzip content through hash
for {
_, err := io.CopyN(hsh, gr, int64(1*MB))
if errors.Is(err, io.EOF) {
break
}
if err != nil {
fmt.Printf("Failed to hash gzip content: %v", err)
os.Exit(1)
}
}
// reset input file
fin.Seek(0, 0)
gr.Reset(fin)
// sign hash and create gzip header comment
s := Sign(sec, hsh.Sum(nil))
comment := CreateGZipComment(cliOpt.cmt, cliOpt.secKey, s)
// write new gzip file with our comment and signature
fout, err := os.OpenFile(cliOpt.fout, os.O_RDWR|os.O_CREATE, 0o644)
if err != nil {
fmt.Printf("Failed to write gzip output: %v", err)
os.Exit(1)
}
defer fout.Close()
bufout := bufio.NewWriter(fout)
defer bufout.Flush()
gw := gzip.NewWriter(bufout)
gw.Comment = comment
// write new gzip file
for {
_, err := io.CopyN(gw, gr, int64(1*MB))
if errors.Is(err, io.EOF) {
break
}
if err != nil {
fmt.Printf("Failed to write gzip output: %v", err)
os.Exit(1)
}
}
gr.Close()
gw.Close()
}
func V() {
if cliOpt.pubKey == "" {
fmt.Println("Missing pubkey option '-p'")
os.Exit(1)
}
if cliOpt.fin == "" {
fmt.Println("Missing file-in option '-fin'")
os.Exit(1)
}
pub, err := ReadPubKey(cliOpt.pubKey)
if err != nil {
fmt.Printf("Failed to read public key: %v", err)
os.Exit(1)
}
// open file and read gzip content
fin, err := os.Open(cliOpt.fin)
if err != nil {
fmt.Printf("Failed to open input file: %v", err)
os.Exit(1)
}
defer fin.Close()
gr, err := gzip.NewReader(fin)
if err != nil {
fmt.Printf("Input file not a valid gzip: %v", err)
os.Exit(1)
}
hsh := blake3.New(32, nil)
// run gzip content through hash
for {
_, err := io.CopyN(hsh, gr, int64(1*MB))
if errors.Is(err, io.EOF) {
break
}
if err != nil {
fmt.Printf("Failed to hash gzip content: %v", err)
os.Exit(1)
}
}
// reset input file
fin.Seek(0, 0)
gr.Reset(fin)
// Parse out signature
sig, err := GetSignatureFromGZipComment(gr.Header.Comment)
if err != nil {
fmt.Printf("Failed to get signature from gzip comment: %v", err)
os.Exit(1)
}
if Verify(pub, hsh.Sum(nil), sig) {
fmt.Println("Verified")
} else {
fmt.Println("Failed")
os.Exit(1)
}
}