Debian lenny version packages
[pkg-perl] / deb-src / libio-socket-ssl-perl / libio-socket-ssl-perl-1.16 / README
1
2 IO::Socket::SSL is a class implementing an object oriented
3 interface to SSL sockets. The class is a descendent of
4 IO::Socket::INET.
5
6 In order to use IO::Socket::SSL you need to have Net::SSLeay
7 v1.21 or newer installed but at least version 1.30 is recommended
8 to support features like session caching.
9
10 To support the checks for common name and subject alternative
11 names (verify_hostname_of_cert) you need at least Net::SSLeay
12 version 1.33. Unfortunatly this version was not yet released
13 at the time IO::Socket::SSL version 1.14 was released, so you
14 might try the release Net::SSLeay 1.33_01 or better use the most
15 current version from SVN at svn://svn.debian.org/net-ssleay/
16 because 1.33_01 still contained critical bugs (see 
17 http://svn.debian.org/wsvn/net-ssleay/?rev=222&sc=1)
18
19 For those who do not have a built-in random number generator
20 (including most users of Solaris), you should install one
21 before attempting to install IO::Socket::SSL.  If you don't
22 already have a favorite, try "egd" (egd.sourceforge.net) or
23 one of the other "Related Projects" listed on its home page.
24 If you want to bypass the test for existence of the RNG, then
25 set the "SKIP_RNG_TEST" environment variable to a true value.
26
27 In addition to providing a general OO interface to SSL sockets,
28 this package can be used with libwww-perl.
29
30 installation:
31         perl Makefile.PL
32         make
33         make test
34         make install
35
36 --
37 Steffen Ullrich, Steffen_Ullrich at genua.de
38 Peter Behroozi, behrooz at fas.harvard.edu
39 (Originally by Marko Asplund, marko.asplund at kronodoc.fi)