-
-
01 Oct 2021 21:38:43 UTC
- Distribution: Mozilla-CA
- Module version: 20211001
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (10)
- Testers (2965 / 0 / 0)
- Kwalitee
Bus factor: 1- 91.67% Coverage
- License: open_source
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (124.47KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- none
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Mozilla::CA - Mozilla's CA cert bundle in PEM format
SYNOPSIS
use IO::Socket::SSL; use Mozilla::CA; my $host = "www.paypal.com"; my $client = IO::Socket::SSL->new( PeerHost => "$host:443", SSL_verify_mode => 0x02, SSL_ca_file => Mozilla::CA::SSL_ca_file(), ) || die "Can't connect: $@"; $client->verify_hostname($host, "http") || die "hostname verification failure";
DESCRIPTION
Mozilla::CA provides a copy of Mozilla's bundle of Certificate Authority certificates in a form that can be consumed by modules and libraries based on OpenSSL.
The module provide a single function:
SEE ALSO
http://curl.haxx.se/docs/caextract.html
LICENSE
For the bundled Mozilla CA PEM file the following applies:
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
The Mozilla::CA distribution itself is available under the same license.
Module Install Instructions
To install Mozilla::CA, copy and paste the appropriate command in to your terminal.
cpanm Mozilla::CA
perl -MCPAN -e shell install Mozilla::CA
For more information on module installation, please visit the detailed CPAN module installation guide.