Changeset 1019


Ignore:
Timestamp:
08/30/06 16:08:34 (7 years ago)
Author:
mglb1
Message:

Revert r1011

Python on the BiscuitPCs doesn't provide any method of selecting
SSLv3 so we'll try using SSLv2 everywhere instead.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ccsd/trunk/crcnetd/_utils/ccsd_server.py

    r1011 r1019  
    169169            def getContext(self): 
    170170                """Create an SSL context.""" 
    171                 ctx = SSL.Context(SSL.SSLv3_METHOD) 
     171                ctx = SSL.Context(SSL.SSLv2_METHOD) 
    172172                # Add the CA certificate(s) 
    173173                store = ctx.get_cert_store() 
  • ccsweb/trunk/html/lib/xmlrpc.php

    r1011 r1019  
    11061106                        $curl = curl_init('https://' . $server . ':' . $port . $this->path); 
    11071107                         
    1108                         // Always use SSLv3 
    1109                         curl_setopt($curl, CURLOPT_SSLVERSION, 3); 
     1108                        // Always use SSLv2 
     1109                        curl_setopt($curl, CURLOPT_SSLVERSION, 2); 
    11101110 
    11111111                        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); 
Note: See TracChangeset for help on using the changeset viewer.