1Net::HTTPS(3) User Contributed Perl Documentation Net::HTTPS(3)
2
3
4
6 Net::HTTPS - Low-level HTTP over SSL/TLS connection (client)
7
9 The "Net::HTTPS" is a low-level HTTP over SSL/TLS client. The
10 interface is the same as the interface for "Net::HTTP", but the
11 constructor method take additional parameters as accepted by
12 IO::Socket::SSL. The "Net::HTTPS" object isa "IO::Socket::SSL" too,
13 which make it inherit additional methods from that base class.
14
15 For historical reasons this module also supports using "Net::SSL" (from
16 the Crypt-SSLeay distribution) as its SSL driver and base class. This
17 base is automatically selected if available and "IO::Socket::SSL"
18 isn't. You might also force which implementation to use by setting
19 $Net::HTTPS::SSL_SOCKET_CLASS before loading this module. If not set
20 this variable is initialized from the "PERL_NET_HTTPS_SSL_SOCKET_CLASS"
21 environment variable.
22
24 You might set the "PERL_NET_HTTPS_SSL_SOCKET_CLASS" environment
25 variable to the name of the base SSL implementation (and Net::HTTPS
26 base class) to use. The default is "IO::Socket::SSL". Currently the
27 only other supported value is "Net::SSL".
28
30 Net::HTTP, IO::Socket::SSL
31
32
33
34perl v5.16.3 2012-11-08 Net::HTTPS(3)