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
|
2015-12-08 16:13:29 +01:00
|
|
|
EMENames bool
|
2015-12-19 14:41:39 +01:00
|
|
|
GCMIV128 bool
|
2015-11-28 16:52:57 +01:00
|
|
|
}
|