From cf27037f20723e934320edeff7f8aa356bdca467 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 3 Mar 2019 13:25:30 +0100 Subject: Allow multiple -extpass arguments To support arguments containing spaces, -extpass can now be passed multiple times. https://github.com/rfjakob/gocryptfs/issues/289 --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index a376356..09c8ed7 100644 --- a/main.go +++ b/main.go @@ -53,7 +53,7 @@ func loadConfig(args *argContainer) (masterkey []byte, cf *configfile.ConfFile, pw = readpassword.Trezor(cf.TrezorPayload) } else { // Normal password entry - pw = readpassword.Once(args.extpass, args.passfile, "") + pw = readpassword.Once([]string(args.extpass), args.passfile, "") } tlog.Info.Println("Decrypting master key") masterkey, err = cf.DecryptMasterKey(pw) @@ -93,7 +93,7 @@ func changePassword(args *argContainer) { log.Panic("empty masterkey") } tlog.Info.Println("Please enter your new password.") - newPw := readpassword.Twice(args.extpass, args.passfile) + newPw := readpassword.Twice([]string(args.extpass), args.passfile) readpassword.CheckTrailingGarbage() confFile.EncryptKey(masterkey, newPw, confFile.ScryptObject.LogN()) for i := range newPw { -- cgit v1.2.3