From 5dfa3c444ea9b4040e947a28f69bc883c2938d6c Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Wed, 30 Apr 2014 16:33:41 +0200 Subject: [PATCH] put ECDSA ciphers before RSA ciphers Google servers (like youtube) negotiate ECDSA variant of ciphersuite only if the RSA variant is also present, so to return more comple cipher listing, we need to move ECDSA ciphers before RSA ciphers --- cipherscan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipherscan b/cipherscan index cda1452..53d84d0 100755 --- a/cipherscan +++ b/cipherscan @@ -15,7 +15,7 @@ fi if [ ! -e "$CACERTS" ]; then echo "Warning: CA Certificates not found at $CACERTS, export CACERTS variable with location of your trust anchors" 1>&2 fi -CIPHERSUITE="ALL:COMPLEMENTOFALL" +CIPHERSUITE="ALL:COMPLEMENTOFALL:+aRSA" DEBUG=0 VERBOSE=0 DELAY=0