aboutsummaryrefslogtreecommitdiff
path: root/internal/nametransform/diriv.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-01-10 07:27:04 +0100
committerJakob Unterwurzacher2021-01-10 07:27:04 +0100
commitf3394ae286d65492483579e038acb33edd8ca274 (patch)
tree51fadd715b5caab1f3b21e20f1fecc05a7d247d6 /internal/nametransform/diriv.go
parentde108d3fc06dd9de404c497dfa9faa26956f43e3 (diff)
nametransform: move permission constants to perms.go
Prep for https://github.com/rfjakob/gocryptfs/issues/539
Diffstat (limited to 'internal/nametransform/diriv.go')
-rw-r--r--internal/nametransform/diriv.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/internal/nametransform/diriv.go b/internal/nametransform/diriv.go
index 6dbf028..b2f165b 100644
--- a/internal/nametransform/diriv.go
+++ b/internal/nametransform/diriv.go
@@ -62,14 +62,6 @@ func fdReadDirIV(fd *os.File) (iv []byte, err error) {
// This function is exported because it is used from fusefrontend, main,
// and also the automated tests.
func WriteDirIVAt(dirfd int) error {
- // It makes sense to have the diriv files group-readable so the FS can
- // be mounted from several users from a network drive (see
- // https://github.com/rfjakob/gocryptfs/issues/387 ).
- //
- // Note that gocryptfs.conf is still created with 0400 permissions so the
- // owner must explicitly chmod it to permit access.
- const dirivPerms = 0440
-
iv := cryptocore.RandBytes(DirIVLen)
// 0400 permissions: gocryptfs.diriv should never be modified after creation.
// Don't use "ioutil.WriteFile", it causes trouble on NFS: