Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: IO::Socket::SSL and SSL_verify_mode

by Khen1950fx (Canon)
on Mar 22, 2012 at 05:13 UTC ( [id://960925]=note: print w/replies, xml ) Need Help??


in reply to IO::Socket::SSL and SSL_verify_mode

I'm assuming that you want no verification done, so using SSL_verify_mode => 0x00 can be as simple as using the SSL_CTX_set_verify method. I used the example in the ex dir.
#!/usr/bin/perl use strict; use warnings; use LWP::Simple; use IO::Socket::SSL 'debug0'; $|=1; IO::Socket::SSL::set_ctx_defaults( SSL_verifycn_scheme => 'www', SSL_verify_mode => 0, ); print get( 'https://pause.perl.org' );
First, you want to make sure that you don't use debugging because that'll call in ciphers from Net::SSLeay and call Net::SSL, which you don't want to use. Then set IO::Socket::SSL::set_ctx_defaults.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://960925]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (8)
As of 2024-04-24 11:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found