Displaying 1 result from an estimated 1 matches for "cipher_suite_names".
2013 Jul 16
1
curl ciphers name mapping openssl to curl format?
...In curl manual:
--ciphers -> "(SSL) Specifies which ciphers to use in the connection. The
list of ciphers must specify valid ciphers. Read up on SSL cipher list
details on this URL:http://www.openssl.org/docs/apps/ciphers.html"
In openssl: http://www.openssl.org/docs/apps/ciphers.html#CIPHER_SUITE_NAMES
there are names such as "SSL_RSA_WITH_RC4_128_SHA RC4-SHA"
but
curl --ciphers RC4-SHA https://xxx.yyy
curl: (59) Unknown cipher in list: RC4-SHA
the same for --ciphers SSL_RSA_WITH_RC4_128_SHA the same.
But for:
curl --ciphers rsa_rc4_128_sha https://xxx.yyy
the command works. Can you tel...