diff options
Diffstat (limited to 'internal/fusefrontend/xattr_unit_test.go')
-rw-r--r-- | internal/fusefrontend/xattr_unit_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/fusefrontend/xattr_unit_test.go b/internal/fusefrontend/xattr_unit_test.go index c5c9360..b43aeb7 100644 --- a/internal/fusefrontend/xattr_unit_test.go +++ b/internal/fusefrontend/xattr_unit_test.go @@ -11,18 +11,17 @@ import ( "github.com/rfjakob/gocryptfs/internal/nametransform" ) -func newTestFS() *FS { +func newTestFS(args Args) *FS { // Init crypto backend key := make([]byte, cryptocore.KeyLen) cCore := cryptocore.New(key, cryptocore.BackendGoGCM, contentenc.DefaultIVBits, true, false) cEnc := contentenc.New(cCore, contentenc.DefaultBS, false) nameTransform := nametransform.New(cCore.EMECipher, true, true) - args := Args{} return NewFS(args, cEnc, nameTransform) } func TestEncryptDecryptXattrName(t *testing.T) { - fs := newTestFS() + fs := newTestFS(Args{}) attr1 := "user.foo123456789" cAttr := fs.encryptXattrName(attr1) t.Logf("cAttr=%v", cAttr) |