From 19d443b8fe491654f43f748f9a3e031b7f42418e Mon Sep 17 00:00:00 2001 From: Julien Vehent Date: Thu, 9 Jan 2014 11:52:43 -0500 Subject: [PATCH] OpenSSL binary location fix --- cipherscan | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cipherscan b/cipherscan index 939581c..dcbb7f2 100755 --- a/cipherscan +++ b/cipherscan @@ -1,9 +1,13 @@ #!/usr/bin/env bash +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# Author: Julien Vehent [:ulfr] - 2013 + DOBENCHMARK=0 BENCHMARKITER=30 -OPENSSLBIN="./openssl" -#OPENSSLBIN="/usr/bin/openssl" +OPENSSLBIN="$(dirname $0)/openssl" TIMEOUT=10 CIPHERSUITE="ALL:COMPLEMENTOFALL" TARGET=$1