From decda6d2559192b09289b5328b9446d2b6fa7ce0 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 5 Mar 2017 18:13:56 +0100 Subject: configfile: switch on Raw64 by default As we have dropped Go 1.4 compatibility already, and will add a new feature flag for gocryptfs v1.3 anyway, this is a good time to enable Raw64 as well. --- internal/configfile/config_file.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'internal/configfile/config_file.go') diff --git a/internal/configfile/config_file.go b/internal/configfile/config_file.go index d28b1d4..5bb021c 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -50,7 +50,7 @@ type ConfFile struct { // CreateConfFile - create a new config with a random key encrypted with // "password" and write it to "filename". // Uses scrypt with cost parameter logN. -func CreateConfFile(filename string, password string, plaintextNames bool, logN int, creator string, aessiv bool, raw64 bool) error { +func CreateConfFile(filename string, password string, plaintextNames bool, logN int, creator string, aessiv bool) error { var cf ConfFile cf.filename = filename cf.Creator = creator @@ -71,9 +71,7 @@ func CreateConfFile(filename string, password string, plaintextNames bool, logN cf.FeatureFlags = append(cf.FeatureFlags, knownFlags[FlagDirIV]) cf.FeatureFlags = append(cf.FeatureFlags, knownFlags[FlagEMENames]) cf.FeatureFlags = append(cf.FeatureFlags, knownFlags[FlagLongNames]) - if raw64 { - cf.FeatureFlags = append(cf.FeatureFlags, knownFlags[FlagRaw64]) - } + cf.FeatureFlags = append(cf.FeatureFlags, knownFlags[FlagRaw64]) } if aessiv { cf.FeatureFlags = append(cf.FeatureFlags, knownFlags[FlagAESSIV]) -- cgit v1.2.3