diff options
| author | Jakob Unterwurzacher | 2018-09-08 12:40:29 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2018-09-08 12:40:29 +0200 | 
| commit | 2bdf7d5172d3540606f098030e8ede7a3ad1dfdd (patch) | |
| tree | a32afb70805dbc0c4915d0b800016ea3f31214b0 /tests/plaintextnames | |
| parent | 09d28c293e2f4142cda8dbfee0741aee7213748d (diff) | |
configfile: add LoadAndDecrypt wrapper
Callers that do not want to decrypt the masterkey should
call plain Load().
https://github.com/rfjakob/gocryptfs/issues/258
Diffstat (limited to 'tests/plaintextnames')
| -rw-r--r-- | tests/plaintextnames/plaintextnames_test.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/plaintextnames/plaintextnames_test.go b/tests/plaintextnames/plaintextnames_test.go index 121a4a0..cce25b6 100644 --- a/tests/plaintextnames/plaintextnames_test.go +++ b/tests/plaintextnames/plaintextnames_test.go @@ -29,7 +29,7 @@ func TestMain(m *testing.M) {  // Only the PlaintextNames feature flag should be set  func TestFlags(t *testing.T) { -	_, cf, err := configfile.Load(cDir+"/gocryptfs.conf", testPw) +	_, cf, err := configfile.LoadAndDecrypt(cDir+"/gocryptfs.conf", testPw)  	if err != nil {  		t.Fatal(err)  	} | 
