-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
68 lines (58 loc) · 1.81 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
package main
import (
"flag"
"fmt"
"os"
)
func main() {
var generate, help, encrypt, decrypt bool
var keyPath, input, output string
flag.BoolVar(&help, "h", false, "打印帮助")
flag.BoolVar(&generate, "g", false, "生成密钥对")
flag.BoolVar(&encrypt, "e", false, "加密文件")
flag.BoolVar(&decrypt, "d", false, "解密文件")
flag.StringVar(&keyPath, "k", "", "指定密钥")
flag.StringVar(&input, "i", "", "输入文件")
flag.StringVar(&output, "o", "", "输出文件")
flag.Parse()
if help {
printHelp()
os.Exit(0)
}
if generate {
fmt.Println("密钥对生成成功")
fmt.Printf("密钥长度: 2048\n\n")
generateKey()
os.Exit(0)
}
if encrypt && keyPath != "" && input != "" && output != "" && !decrypt {
encryptFile(input, output, decryptPublicPEMKey(keyPath))
os.Exit(0)
}
if decrypt && keyPath != "" && input != "" && output != "" && !encrypt {
decryptFile(input, output, decryptPEMKey(keyPath))
os.Exit(0)
}
printHelp()
}
func printHelp() {
fmt.Printf("基于 RSA 非对称加密算法的文件分组加密工具 Copyright 信息安全小组\n\n")
fmt.Printf("参数列表:\n")
fmt.Printf("-h\t打印帮助\n")
fmt.Printf("-g\t生成密钥对\n")
fmt.Printf("-e\t加密文件\n")
fmt.Printf("-d\t解密文件\n")
fmt.Printf("-k\t指定密钥位置\n")
fmt.Printf("-i\t输入文件位置\n")
fmt.Printf("-o\t输出文件位置\n\n")
fmt.Printf("使用示例:\n")
fmt.Printf("生成密钥对:\trfe -g\n")
fmt.Printf("加密文件:\trfe -e -k [公钥文件路径] -i [待加密文件路径] -o [加密文件输出路径]\n")
fmt.Printf("解密文件:\trfe -d -k [私钥文件路径] -i [待解密文件路径] -o [解密文件输出路径]\n")
}
//异常处理
func checkError(err error) {
if err != nil {
fmt.Println("致命错误:", err.Error())
}
}