libgocryptfs/internal/fusefrontend/args.go

13 lines
265 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
2015-11-29 21:55:20 +01:00
DirIV bool
EMENames bool
GCMIV128 bool
2015-11-28 16:52:57 +01:00
}