This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients beda, giampaolo.rodola, gregory.p.smith, janssen, pitrou
Date 2010-04-21.12:14:04
SpamBayes Score 0.00021230431
Marked as misclassified No
Message-id <1271852045.58.0.877085005981.issue8484@psf.upfronthosting.co.za>
In-reply-to
Content
Changing OpenSSL initialization to the following seems to fix the issue (with OpenSSL 0.9.8k and 1.0.0):

        /* Init OpenSSL */
        SSL_load_error_strings();
        SSL_library_init();
#ifdef WITH_THREAD
        /* note that this will start threading if not already started */
        if (!_setup_ssl_threads()) {
                return;
        }
#endif
        OpenSSL_add_all_algorithms();


_hashopenssl.c might need that code too, therefore I'm adding gps to the nosy list.
History
Date User Action Args
2010-04-21 12:14:05pitrousetrecipients: + pitrou, gregory.p.smith, janssen, giampaolo.rodola, beda
2010-04-21 12:14:05pitrousetmessageid: <1271852045.58.0.877085005981.issue8484@psf.upfronthosting.co.za>
2010-04-21 12:14:04pitroulinkissue8484 messages
2010-04-21 12:14:04pitroucreate