summaryrefslogtreecommitdiff
path: root/internal/fusefrontend_reverse/reverse_diriv.go
blob: df3a4d1cf2a21f603bfac1713e8d8a2f6453d801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package fusefrontend_reverse

import (
	"crypto/sha256"

	"github.com/hanwen/go-fuse/fuse"
	"github.com/hanwen/go-fuse/fuse/nodefs"

	"github.com/rfjakob/gocryptfs/internal/nametransform"
)

// deriveDirIV derives the DirIV from the encrypted directory path by
// hashing it
func deriveDirIV(dirPath string) []byte {
	hash := sha256.Sum256([]byte(dirPath))
	return hash[:nametransform.DirIVLen]
}

func (rfs *reverseFS) newDirIVFile(cRelPath string) (nodefs.File, fuse.Status) {
	cDir := saneDir(cRelPath)
	absDir, err := rfs.abs(rfs.decryptPath(cDir))
	if err != nil {
		return nil, fuse.ToStatus(err)
	}
	return rfs.NewVirtualFile(deriveDirIV(cDir), absDir)
}