README 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. IO::Socket::SSL is a class implementing an object oriented
  2. interface to SSL sockets. The class is a descendent of
  3. IO::Socket::INET.
  4. In order to use IO::Socket::SSL you need to have Net::SSLeay
  5. v1.46 or newer installed.
  6. To use ECDH curves (needed for perfect forward secrecy) you need
  7. to use Net::SSLeay >= 1.56 (not released at time of writing) or
  8. patch Net::SSLeay yourself using docs/net-ssley-ecdh.patch.
  9. For those who do not have a built-in random number generator
  10. (including most users of Solaris), you should install one
  11. before attempting to install IO::Socket::SSL. If you don't
  12. already have a favorite, try "egd" (egd.sourceforge.net) or
  13. one of the other "Related Projects" listed on its home page.
  14. If you want to bypass the test for existence of the RNG, then
  15. set the "SKIP_RNG_TEST" environment variable to a true value.
  16. In addition to providing a general OO interface to SSL sockets,
  17. this package can be used with libwww-perl.
  18. installation:
  19. perl Makefile.PL
  20. make
  21. make test
  22. make install
  23. --
  24. Steffen Ullrich, Steffen_Ullrich at genua.de
  25. Peter Behroozi, behrooz at fas.harvard.edu
  26. (Originally by Marko Asplund, marko.asplund at kronodoc.fi)