Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a core Perl module for SSL/TLS support?

Tags:

https

ssl

perl

Does Perl support SSL/TLS via a core modules?

I am using HTTP::Tiny and want to fetch https url without installing any library and depending external libraries and XS.

Is there an option to let HTTP::Tiny to work with SSL without relying on OpenSSL, or is there any pure Perl module for fetching data with SSL out of the box without the need for XS modules?

like image 823
smith Avatar asked May 19 '17 18:05

smith


1 Answers

SSL/TLS support is provided by Net::SSLeay and IO::Socket::SSL. Modules such as HTTP::Tiny and LWP interface with the OpenSSL routines via those layers.

There is no core or pure Perl module supporting HTTPS.

like image 167
Sinan Ünür Avatar answered Oct 19 '22 14:10

Sinan Ünür