libgocryptfs/internal/fusefrontend/args.go

31 lines
1.0 KiB
Go
Raw Normal View History

package fusefrontend
2015-11-28 16:52:57 +01:00
2016-09-20 21:58:04 +02:00
import (
"github.com/rfjakob/gocryptfs/internal/cryptocore"
)
2016-10-02 06:14:18 +02:00
// Args is a container for arguments that are passed from main() to fusefrontend
2015-11-28 16:52:57 +01:00
type Args struct {
2015-11-29 21:55:20 +01:00
Masterkey []byte
Cipherdir string
CryptoBackend cryptocore.AEADTypeEnum
2015-11-28 16:52:57 +01:00
PlaintextNames bool
LongNames bool
// Should we chown a file after it has been created?
// This only makes sense if (1) allow_other is set and (2) we run as root.
PreserveOwner bool
// ConfigCustom is true when the user select a non-default config file
// location. If it is false, reverse mode maps ".gocryptfs.reverse.conf"
// to "gocryptfs.conf" in the plaintext dir.
ConfigCustom bool
// Raw64 is true when RawURLEncoding (without padding) should be used for
// file names.
// Corresponds to the Raw64 feature flag introduced in gocryptfs v1.2.
Raw64 bool
// NoPrealloc disables automatic preallocation before writing
NoPrealloc bool
// Use HKDF key derivation.
// Corresponds to the HKDF feature flag introduced in gocryptfs v1.3.
HKDF bool
2015-11-28 16:52:57 +01:00
}