diff options
| author | Leo Famulari <leo@famulari.name> | 2016-03-30 11:48:53 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2016-03-30 11:48:53 +0000 | 
| commit | 631784149d9173cb363f5d1f3a231bf8fc90dd33 (patch) | |
| tree | a20980b7dd4b0231a1c87b9780ff592bf87f289f | |
| parent | Update ChangeLog (diff) | |
| download | w3m-631784149d9173cb363f5d1f3a231bf8fc90dd33.tar.gz w3m-631784149d9173cb363f5d1f3a231bf8fc90dd33.zip | |
Disable RC4
Origin: http://git.savannah.gnu.org/cgit/guix.git/commit/?id=62339e2d493bf87a3aabe12e45458581e9705d83
Diffstat (limited to '')
| -rw-r--r-- | url.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -327,7 +327,7 @@ openSSLHandle(int sock, char *hostname, char **p_cert)  	SSL_load_error_strings();  	if (!(ssl_ctx = SSL_CTX_new(SSLv23_client_method())))  	    goto eend; -	SSL_CTX_set_cipher_list(ssl_ctx, "DEFAULT:!LOW:!EXP"); +	SSL_CTX_set_cipher_list(ssl_ctx, "DEFAULT:!LOW:!RC4:!EXP");  	option = SSL_OP_ALL;  	if (ssl_forbid_method) {  	    if (strchr(ssl_forbid_method, '2')) | 
