libgocryptfs/pathfs_frontend/args.go

13 lines
271 B
Go
Raw Normal View History

2015-11-28 16:52:57 +01:00
package pathfs_frontend
// Container for arguments that are passed from main() to pathfs_frontend
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
}