File: lwp-with-verifycn.pl

package info (click to toggle)
libio-socket-ssl-perl 1.16-1%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 352 kB
  • ctags: 102
  • sloc: perl: 2,817; makefile: 16
file content (18 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;

## !!! make sure that Net::SSL never gets loaded, otherwise it will
## be used instead of IO::Socket::SSL from LWP

use IO::Socket::SSL 'debug0';
use LWP::Simple;

IO::Socket::SSL::set_ctx_defaults( 
	SSL_verifycn_scheme => 'www', 
	SSL_verify_mode => 1,
	SSL_ca_file => 'verisign.pem', # root CA of verisign
);
print get( 'https://signin.ebay.com' );