diff options
Diffstat (limited to 'internal/configfile')
| -rw-r--r-- | internal/configfile/config_file.go | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/internal/configfile/config_file.go b/internal/configfile/config_file.go index e27f2ad..b36980f 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -17,6 +17,9 @@ const (  	// The dot "." is not used in base64url (RFC4648), hence  	// we can never clash with an encrypted file.  	ConfDefaultName = "gocryptfs.conf" +	// In reverse mode, the config file gets stored next to the plain-text +	// files. Make it hidden (start with dot) to not annoy the user. +	ConfReverseName = ".gocryptfs.reverse.conf"  )  type ConfFile struct { | 
