summaryrefslogtreecommitdiff
path: root/internal/fusefrontend/args.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/fusefrontend/args.go')
-rw-r--r--internal/fusefrontend/args.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/fusefrontend/args.go b/internal/fusefrontend/args.go
new file mode 100644
index 0000000..e8cab04
--- /dev/null
+++ b/internal/fusefrontend/args.go
@@ -0,0 +1,12 @@
+package fusefrontend
+
+// Container for arguments that are passed from main() to fusefrontend
+type Args struct {
+ Masterkey []byte
+ Cipherdir string
+ OpenSSL bool
+ PlaintextNames bool
+ DirIV bool
+ EMENames bool
+ GCMIV128 bool
+}