PKCS12(3pm) | User Contributed Perl Documentation | PKCS12(3pm) |
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); print $pkcs12->private_key($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 Base64 representation of the private key.
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-2018 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.
2020-11-08 | perl v5.32.0 |