From 0749fbd9c9d5935956ce8675bb7f19abc1d02a0a Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 10 Dec 2016 21:14:57 +0100 Subject: [PATCH] benchmark.bash: add comments to show how to force openssl usage --- benchmark.bash | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/benchmark.bash b/benchmark.bash index 4169a5a..61926df 100755 --- a/benchmark.bash +++ b/benchmark.bash @@ -47,7 +47,12 @@ if [[ $MODE == encfs ]]; then else echo "Testing gocryptfs at $CRYPT" gocryptfs -q -init -extpass="echo test" -scryptn=10 $CRYPT + # By default, gocryptfs decides between OpenSSL and Go GCM: gocryptfs -q -extpass="echo test" $CRYPT $MNT + # Force use of OpenSSL: + #gocryptfs -q -extpass="echo test" -openssl=true $CRYPT $MNT + # Force use of Go GCM: + #gocryptfs -q -extpass="echo test" -openssl=false $CRYPT $MNT fi # Cleanup trap