-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
56 lines (47 loc) · 1 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
package main
import (
"fmt"
"os"
"github.com/yoshi389111/git-caesar/caesar/prvkeylib"
"github.com/yoshi389111/git-caesar/caesar/pubkeylib"
"github.com/yoshi389111/git-caesar/iolib"
)
func main() {
opts := getOpts()
peerPubKeys, err := pubkeylib.GetPubKeys(opts.PublicKey)
if err != nil {
panic(err)
}
prvKey, err := prvkeylib.GetPrvKey(opts.PrivateKey)
if err != nil {
panic(err)
}
inBytes, err := iolib.ReadInputFile(opts.InputPath)
if err != nil {
panic(err)
}
var outBytes []byte
if opts.Decrypt {
outBytes, err = decrypt(peerPubKeys, prvKey, inBytes)
if err != nil {
panic(err)
}
} else {
if peerPubKeys == nil {
fmt.Fprintf(os.Stderr, "`-u` option missing\n")
os.Exit(1)
}
if len(peerPubKeys) == 0 {
fmt.Fprintf(os.Stderr, "Recipient's public key not found.\n")
os.Exit(1)
}
outBytes, err = encrypt(peerPubKeys, prvKey, inBytes)
if err != nil {
panic(err)
}
}
err = iolib.WriteOutputFile(opts.OutputPath, outBytes)
if err != nil {
panic(err)
}
}