diff options
author | Jakob Unterwurzacher | 2017-05-28 18:09:02 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-05-30 17:04:46 +0200 |
commit | 857507e8b100626ae0471fae793efc52bf552821 (patch) | |
tree | 155ff21467d8b35887e9a7fd984d37e23f7e6e70 /internal/fusefrontend_reverse/rpath.go | |
parent | 4d2cc551cf6fa71e425fad8f397e96d69f016a6b (diff) |
fusefrontend_reverse: move pathiv to its own package
We will also need it in forward mode.
Diffstat (limited to 'internal/fusefrontend_reverse/rpath.go')
-rw-r--r-- | internal/fusefrontend_reverse/rpath.go | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/internal/fusefrontend_reverse/rpath.go b/internal/fusefrontend_reverse/rpath.go index 5082d11..58e8c91 100644 --- a/internal/fusefrontend_reverse/rpath.go +++ b/internal/fusefrontend_reverse/rpath.go @@ -1,13 +1,13 @@ package fusefrontend_reverse import ( - "crypto/sha256" "encoding/base64" "path/filepath" "strings" "syscall" "github.com/rfjakob/gocryptfs/internal/nametransform" + "github.com/rfjakob/gocryptfs/internal/pathiv" "github.com/rfjakob/gocryptfs/internal/tlog" ) @@ -20,23 +20,6 @@ func saneDir(path string) string { return d } -type ivPurposeType string - -const ( - ivPurposeDirIV ivPurposeType = "DIRIV" - ivPurposeFileID ivPurposeType = "FILEID" - ivPurposeSymlinkIV ivPurposeType = "SYMLINKIV" - ivPurposeBlock0IV ivPurposeType = "BLOCK0IV" -) - -// derivePathIV derives an IV from an encrypted path by hashing it with sha256 -func derivePathIV(path string, purpose ivPurposeType) []byte { - // Use null byte as separator as it cannot occur in the path - extended := []byte(path + "\000" + string(purpose)) - hash := sha256.Sum256(extended) - return hash[:nametransform.DirIVLen] -} - // abs basically returns storage dir + "/" + relPath. // It takes an error parameter so it can directly wrap decryptPath like this: // a, err := rfs.abs(rfs.decryptPath(relPath)) @@ -104,7 +87,7 @@ func (rfs *ReverseFS) decryptPath(relPath string) (string, error) { // Start at the top and recurse currentCipherDir := filepath.Join(parts[:i]...) currentPlainDir := filepath.Join(transformedParts[:i]...) - dirIV = derivePathIV(currentCipherDir, ivPurposeDirIV) + dirIV = pathiv.Derive(currentCipherDir, pathiv.PurposeDirIV) transformedPart, err := rfs.rDecryptName(parts[i], dirIV, currentPlainDir) if err != nil { return "", err |