From 195d9d18a90d88ff2cb0530d832c59d98934fd1f Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Fri, 20 Aug 2021 10:57:26 +0200 Subject: Implement -deterministic-names: extended -zerodiriv -deterministc-names uses all-zero dirivs but does not write them to disk anymore. --- cli_args.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli_args.go') diff --git a/cli_args.go b/cli_args.go index 76e8d30..d7e3217 100644 --- a/cli_args.go +++ b/cli_args.go @@ -30,7 +30,7 @@ type argContainer struct { plaintextnames, quiet, nosyslog, wpanic, longnames, allow_other, reverse, aessiv, nonempty, raw64, noprealloc, speed, hkdf, serialize_reads, forcedecode, hh, info, - sharedstorage, devrandom, fsck, one_file_system, zerodiriv bool + sharedstorage, devrandom, fsck, one_file_system, deterministic_names bool // Mount options with opposites dev, nodev, suid, nosuid, exec, noexec, rw, ro, kernel_cache, acl bool masterkey, mountpoint, cipherdir, cpuprofile, @@ -179,7 +179,7 @@ func parseCliOpts(osArgs []string) (args argContainer) { flagSet.BoolVar(&args.devrandom, "devrandom", false, "Use /dev/random for generating master key") flagSet.BoolVar(&args.fsck, "fsck", false, "Run a filesystem check on CIPHERDIR") flagSet.BoolVar(&args.one_file_system, "one-file-system", false, "Don't cross filesystem boundaries") - flagSet.BoolVar(&args.zerodiriv, "zerodiriv", false, "Create diriv as all-zero files") + flagSet.BoolVar(&args.deterministic_names, "deterministic-names", false, "Disable diriv file name randomisation") // Mount options with opposites flagSet.BoolVar(&args.dev, "dev", false, "Allow device files") -- cgit v1.2.3