| Crypt-OpenSSL-PKCS12 documentation | Contained in the Crypt-OpenSSL-PKCS12 distribution. |
Crypt::OpenSSL::PKCS12 - Perl extension to OpenSSL's PKCS12 API.
use Crypt::OpenSSL::PKCS12;
my $pass = "your password";
my $pkcs12 = Crypt::OpenSSL::PKCS12->new_from_file('cert.p12');
print $pkcs12->certificate($pass);
if ($pkcs12->mac_ok($pass)) {
....
$pkcs12->create('test-cert.pem', 'test-key.pem', $pass, 'out.p12', "friendly name");
Crypt::OpenSSL::PKCS12 - Perl extension to OpenSSL's PKCS12 API.
This implements a small bit of OpenSSL's PKCS12 API.
Create a new Crypt::OpenSSL::PKCS12 instance.
Get the Base64 representation of the certificate.
Get the binary represenation as a string.
Verifiy the certificates Message Authentication Code
Change a certificate's password.
Create a new PKCS12 certificate. $cert & $key may either be strings or filenames.
$friendly_name is optional.
None by default.
On request:
OpenSSL(1), Crypt::OpenSSL::X509, Crypt::OpenSSL::RSA, Crypt::OpenSSL::Bignum
Dan Sully, <daniel@cpan.org>
Copyright 2004-2008 by Dan Sully
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| Crypt-OpenSSL-PKCS12 documentation | Contained in the Crypt-OpenSSL-PKCS12 distribution. |
package Crypt::OpenSSL::PKCS12; use strict; use vars qw($VERSION @EXPORT_OK); use Exporter; use base qw(Exporter); $VERSION = '0.5'; @EXPORT_OK = qw(NOKEYS NOCERTS INFO CLCERTS CACERTS); BOOT_XS: { require DynaLoader; # DynaLoader calls dl_load_flags as a static method. *dl_load_flags = DynaLoader->can('dl_load_flags'); do {__PACKAGE__->can('bootstrap') || \&DynaLoader::bootstrap}->(__PACKAGE__,$VERSION); } 1; __END__