diff options
author | Jakob Unterwurzacher | 2017-03-05 22:25:41 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-03-05 22:25:41 +0100 |
commit | 5b54577d2ec553055c06e05841f626c10368c6b6 (patch) | |
tree | 9b1739d5b9ccc597186662f4b235c7c71af6c0a9 /internal/fusefrontend_reverse/ctlsock_interface.go | |
parent | d0bc7970f721cee607d993406d97d32e2c660abe (diff) |
nametransform: fix Raw64 not affecting longnames
HashLongName() incorrectly hardcoded the call to base64.URLEncoding.
Diffstat (limited to 'internal/fusefrontend_reverse/ctlsock_interface.go')
-rw-r--r-- | internal/fusefrontend_reverse/ctlsock_interface.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/fusefrontend_reverse/ctlsock_interface.go b/internal/fusefrontend_reverse/ctlsock_interface.go index 1f02fc1..4b3ffe6 100644 --- a/internal/fusefrontend_reverse/ctlsock_interface.go +++ b/internal/fusefrontend_reverse/ctlsock_interface.go @@ -6,7 +6,6 @@ import ( "syscall" "github.com/rfjakob/gocryptfs/internal/ctlsock" - "github.com/rfjakob/gocryptfs/internal/nametransform" ) var _ ctlsock.Interface = &ReverseFS{} // Verify that interface is implemented. @@ -24,7 +23,7 @@ func (rfs *ReverseFS) EncryptPath(plainPath string) (string, error) { dirIV := derivePathIV(cipherPath, ivPurposeDirIV) encryptedPart := rfs.nameTransform.EncryptName(part, dirIV) if rfs.args.LongNames && len(encryptedPart) > syscall.NAME_MAX { - encryptedPart = nametransform.HashLongName(encryptedPart) + encryptedPart = rfs.nameTransform.HashLongName(encryptedPart) } cipherPath = filepath.Join(cipherPath, encryptedPart) } |