b558901e66
The GCMIV128 feature flag is already mandatory, dropping the command line option is the final step. Completes https://github.com/rfjakob/gocryptfs/issues/29 .
11 lines
223 B
Go
11 lines
223 B
Go
package fusefrontend
|
|
|
|
// Container for arguments that are passed from main() to fusefrontend
|
|
type Args struct {
|
|
Masterkey []byte
|
|
Cipherdir string
|
|
OpenSSL bool
|
|
PlaintextNames bool
|
|
LongNames bool
|
|
}
|