diff options
author | Jakob Unterwurzacher | 2017-02-22 23:55:43 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-02-22 23:56:34 +0100 |
commit | 1e03e059fa0980db8d527f1c01094999d8813b95 (patch) | |
tree | 950f537f1fa58e9f0506a540b31d790030e69a1d /cli_args.go | |
parent | b056776a013813e251aa37027c3aaa3f1e22d7c8 (diff) |
Implement "gocryptfs -speed"
A crypto benchmark mode like "openssl speed".
Example run:
$ ./gocryptfs -speed
AES-GCM-256-OpenSSL 180.89 MB/s (selected in auto mode)
AES-GCM-256-Go 48.19 MB/s
AES-SIV-512-Go 37.40 MB/s
Diffstat (limited to 'cli_args.go')
-rw-r--r-- | cli_args.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli_args.go b/cli_args.go index 25392c4..f52d265 100644 --- a/cli_args.go +++ b/cli_args.go @@ -18,7 +18,7 @@ type argContainer struct { debug, init, zerokey, fusedebug, openssl, passwd, fg, version, plaintextnames, quiet, nosyslog, wpanic, longnames, allow_other, ro, reverse, aessiv, nonempty, raw64, - noprealloc bool + noprealloc, speed bool masterkey, mountpoint, cipherdir, cpuprofile, extpass, memprofile, ko, passfile, ctlsock, fsname string // Configuration file name override @@ -110,6 +110,7 @@ func parseCliOpts() (args argContainer) { flagSet.BoolVar(&args.nonempty, "nonempty", false, "Allow mounting over non-empty directories") flagSet.BoolVar(&args.raw64, "raw64", false, "Use unpadded base64 for file names") flagSet.BoolVar(&args.noprealloc, "noprealloc", false, "Disable preallocation before writing") + flagSet.BoolVar(&args.speed, "speed", false, "Run crypto speed test") flagSet.StringVar(&args.masterkey, "masterkey", "", "Mount with explicit master key") flagSet.StringVar(&args.cpuprofile, "cpuprofile", "", "Write cpu profile to specified file") flagSet.StringVar(&args.memprofile, "memprofile", "", "Write memory profile to specified file") |