1
0
Fork 0
mirror of https://github.com/HACKERALERT/Picocrypt.git synced 2024-05-16 01:51:17 +00:00

Minor tweaks

This commit is contained in:
Evan Su 2024-04-27 14:05:54 -04:00
parent 0a6e6bbcf8
commit e330cfc34f

View file

@ -44,7 +44,7 @@ func parse() int {
os.Exit(1)
}
f = flag.Bool("f", false, "(decryption) attempt to fix corruption")
k = flag.Bool("k", false, "(decryption) keep output unconditionally")
k = flag.Bool("k", false, "(decryption) keep output even if corrupted")
p = flag.Bool("p", false, "(encryption) use paranoid mode")
r = flag.Bool("r", false, "(encryption) encode with Reed-Solomon")
flag.Parse()
@ -612,7 +612,7 @@ func work() int {
fin.Close()
fout.Close()
fmt.Print("Completed -> ", fout.Name())
fmt.Println("Completed -> ", fout.Name())
return 0
}