Skip to content

Instantly share code, notes, and snippets.

View unixchina's full-sized avatar

pyops unixchina

View GitHub Profile
@unixchina
unixchina / curl_ssl_ciphers_nss.json
Created January 2, 2024 06:43 — forked from atyachin/curl_ssl_ciphers_nss.json
Curl SSL/TLS Ciphers (CURLOPT_SSL_CIPHER_LIST) - NSS
{
"rc4": "SSL_EN_RC4_128_WITH_MD5",
"rc4-md5": "SSL_EN_RC4_128_WITH_MD5",
"rc4export": "SSL_EN_RC4_128_EXPORT40_WITH_MD5",
"rc2": "SSL_EN_RC2_128_CBC_WITH_MD5",
"rc2export": "SSL_EN_RC2_128_CBC_EXPORT40_WITH_MD5",
"des": "SSL_EN_DES_64_CBC_WITH_MD5",
"desede3": "SSL_EN_DES_192_EDE3_CBC_WITH_MD5",
"rsa_rc4_128_md5": "SSL_RSA_WITH_RC4_128_MD5",
"rsa_rc4_128_sha": "SSL_RSA_WITH_RC4_128_SHA",
@unixchina
unixchina / curl_ssl_ciphers_openssl.json
Created January 2, 2024 06:42 — forked from atyachin/curl_ssl_ciphers_openssl.json
Curl SSL/TLS Ciphers (CURLOPT_SSL_CIPHER_LIST) - OpenSSL
{
"SSL_RSA_WITH_NULL_MD5": "NULL-MD5",
"SSL_RSA_WITH_NULL_SHA": "NULL-SHA",
"SSL_RSA_WITH_RC4_128_MD5": "RC4-MD5",
"SSL_RSA_WITH_RC4_128_SHA": "RC4-SHA",
"SSL_RSA_WITH_IDEA_CBC_SHA": "IDEA-CBC-SHA",
"SSL_RSA_WITH_3DES_EDE_CBC_SHA": "DES-CBC3-SHA",
"SSL_DH_DSS_WITH_3DES_EDE_CBC_SHA": "DH-DSS-DES-CBC3-SHA",
"SSL_DH_RSA_WITH_3DES_EDE_CBC_SHA": "DH-RSA-DES-CBC3-SHA",
"SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA": "DHE-DSS-DES-CBC3-SHA",