diff options
author | Jakob Unterwurzacher | 2015-11-28 16:52:57 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-28 18:39:45 +0100 |
commit | 1fb349e97b5972b5d56c61afd05aed26698dcc97 (patch) | |
tree | 935bfa1d2dc57569680ed32e3d79b34f326e7b6b /pathfs_frontend/args.go | |
parent | 01141f8b5e0e51ea07299b7bf43d27feb53f6c67 (diff) |
diriv: also support old CBC symlink
Diffstat (limited to 'pathfs_frontend/args.go')
-rw-r--r-- | pathfs_frontend/args.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pathfs_frontend/args.go b/pathfs_frontend/args.go new file mode 100644 index 0000000..7971b79 --- /dev/null +++ b/pathfs_frontend/args.go @@ -0,0 +1,10 @@ +package pathfs_frontend + +// Container for arguments that are passed from main() to pathfs_frontend +type Args struct { + Masterkey []byte + Cipherdir string + OpenSSL bool + PlaintextNames bool + DirIV bool +} |