removed useless prints

This commit is contained in:
ed 2019-12-18 22:45:16 +01:00
parent a3623f8e7e
commit d84deb6a20
1 changed files with 0 additions and 2 deletions

View File

@ -131,7 +131,6 @@ func main() {
fmt.Println(fn)
buf := file2data(FileName)
if filetype.IsType(buf,hdnfType) {
fmt.Println("this is an hidden file")
fmt.Print("password: ")
pw := readPass()
fmt.Print("\n")
@ -141,7 +140,6 @@ func main() {
data := decrypt(secret, key)
data2file(datafn, data)
} else {
fmt.Println("not hidden")
pw := checkPass()
key := keyMkr(pw)
secret := headerAdd(encrypt(buf,key))