libgocryptfs/internal/fusefrontend/args.go

12 lines
244 B
Go
Raw Normal View History

package fusefrontend
2015-11-28 16:52:57 +01:00
// 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
OpenSSL bool
2015-11-28 16:52:57 +01:00
PlaintextNames bool
GCMIV128 bool
LongNames bool
2015-11-28 16:52:57 +01:00
}