Use a PFX/P12 File
This demo shows you how to access the certificate and private key in a PFX/P12 file with the use of the
openssl_pkcs12_read() function.
PHP
<?php
use setasign\SetaPDF2\Core\Document;
use setasign\SetaPDF2\Core\Writer\HttpWriter;
use setasign\SetaPDF2\Signer\Signature\Module\Pades as PadesModule;
use setasign\SetaPDF2\Signer\Signer;
// load and register the autoload function
require_once __DIR__ . '/../../../../../bootstrap.php';
$writer = new HttpWriter('signed.pdf');
$document = Document::loadByFilename(
$assetsDirectory . '/pdfs/camtown/Laboratory-Report.pdf',
$writer
);
// create a signer instance
$signer = new Signer($document);
// add a signature field
$field = $signer->addSignatureField();
// and define that you want to use this field
$signer->setSignatureFieldName($field->getQualifiedName());
$pkcs12 = [];
$pfxRead = openssl_pkcs12_read(
file_get_contents($assetsDirectory . '/certificates/setapdf-pw-is-setapdf.pfx'),
$pkcs12,
'setapdf'
);
// error handling
if ($pfxRead === false) {
throw new Exception('The PFX file could not be read.');
}
// now create a signature module
$module = new PadesModule();
// pass the certificate ...
$module->setCertificate($pkcs12['cert']);
// ...and private key to the module
$module->setPrivateKey($pkcs12['pkey']);
// pass extra certificates if included in the PFX file
if (isset($pkcs12['extracerts']) && count($pkcs12['extracerts'])) {
$module->setExtraCertificates($pkcs12['extracerts']);
}
// sign the document with the module
$signer->sign($module);
