blob: 98b51d6c90497f3a50329d7022b450f2c74a43f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package nametransform
const (
// Permissions for gocryptfs.diriv files
//
// 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.
dirivPerms = 0440
// Permissions for gocryptfs.longname.[sha256].name files
namePerms = 0400
)
|