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
This commit is contained in:
Hubert Kario 2014-04-30 16:33:41 +02:00
parent a0cb766381
commit 5dfa3c444e
1 changed files with 1 additions and 1 deletions

View File

@ -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