-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
122 lines (107 loc) · 2.33 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
package main
import (
"fmt"
"os"
"time"
"github.com/kelseykm/kelcryptor/colour"
"github.com/kelseykm/kelcryptor/cryptography"
"github.com/kelseykm/kelcryptor/errors"
)
const version = "2.0.4"
func main() {
var retVal int
defer func() {
os.Exit(retVal)
}()
printBanner()
toIgnore, toRecordTime, toEncrypt, toDecrypt, files := parseFlags()
if cleanFiles, err := verifyFiles(files); err != nil {
fmt.Println(err.Error())
retVal = 2
if !toIgnore {
return
}
files = cleanFiles
}
password, err := func() ([]byte, error) {
var acceptableError errors.MismatchedPasswordError
for {
password, err := scanPassword()
if err == nil {
return password, nil
} else if err != acceptableError {
return nil, err
}
fmt.Println(err.Error())
}
}()
if err != nil {
fmt.Println(err.Error())
retVal = 2
return
}
switch {
case toEncrypt:
for _, file := range files {
if !toRecordTime {
if err := cryptography.EncryptFile(password, file); err != nil {
fmt.Println(err.Error())
retVal = 2
if toIgnore {
continue
}
return
}
} else {
start := time.Now()
if err := cryptography.EncryptFile(password, file); err != nil {
fmt.Println(err.Error())
retVal = 2
if toIgnore {
continue
}
return
}
timeTaken := time.Since(start).Seconds()
fmt.Printf("%s %s %s %s %s\n",
colour.Info,
colour.Message("Done in"),
colour.Time(timeTaken),
colour.Message("seconds:"),
colour.FileName(file),
)
}
}
case toDecrypt:
for _, file := range files {
if !toRecordTime {
if err := cryptography.DecryptFile(password, file); err != nil {
fmt.Println(err.Error())
retVal = 2
if toIgnore {
continue
}
return
}
} else {
start := time.Now()
if err := cryptography.DecryptFile(password, file); err != nil {
fmt.Println(err.Error())
retVal = 2
if toIgnore {
continue
}
return
}
timeTaken := time.Since(start).Seconds()
fmt.Printf("%s %s %s %s %s\n",
colour.Info,
colour.Message("Done in"),
colour.Time(timeTaken),
colour.Message("seconds:"),
colour.FileName(file),
)
}
}
}
}