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 bf56f8b..5605e1d 100644 --- a/internal/configfile/config_file.go +++ b/internal/configfile/config_file.go @@ -225,7 +225,7 @@ func getKeyEncrypter(scryptHash []byte, useHKDF bool) *contentenc.ContentEnc {  	if useHKDF {  		IVLen = contentenc.DefaultIVBits  	} -	cc := cryptocore.New(scryptHash, cryptocore.BackendGoGCM, IVLen, useHKDF) -	ce := contentenc.New(cc, 4096) +	cc := cryptocore.New(scryptHash, cryptocore.BackendGoGCM, IVLen, useHKDF, false) +	ce := contentenc.New(cc, 4096, false)  	return ce  } | 
