diff options
Diffstat (limited to 'internal/configfile')
| -rw-r--r-- | internal/configfile/config_file.go | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/configfile/config_file.go b/internal/configfile/config_file.go index 06b665b..828f034 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -298,8 +298,8 @@ func getKeyEncrypter(scryptHash []byte, useHKDF bool) *contentenc.ContentEnc {  	if useHKDF {  		IVLen = contentenc.DefaultIVBits  	} -	cc := cryptocore.New(scryptHash, cryptocore.BackendGoGCM, IVLen, useHKDF, false) -	ce := contentenc.New(cc, 4096, false) +	cc := cryptocore.New(scryptHash, cryptocore.BackendGoGCM, IVLen, useHKDF) +	ce := contentenc.New(cc, 4096)  	return ce  }  | 
