openssl-pkeyutl + CAPI engine
This demo uses the
openssl-pkeyutl command from OpenSSL with the CAPI engine to create the signature value.
PHP
<?php
use setasign\SetaPDF2\Core\Document;
use setasign\SetaPDF2\Core\Writer\FileWriter;
use setasign\SetaPDF2\Core\Writer\HttpWriter;
use setasign\SetaPDF2\Core\Writer\TempFileWriter;
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';
if (stripos(PHP_OS, 'win') !== 0) {
echo "This demo only works on Windows.";
die();
}
$opensslPath = 'C:\\OpenSSL\\Win64-1.1.1i\\bin\\';
// the file to sign
$fileToSign = $assetsDirectory . '/pdfs/tektown/Laboratory-Report.pdf';
// create a temporary path
$tempFile = TempFileWriter::createTempPath();
// create a writer instance
$writer = new HttpWriter('signed-with-pkeyutl-and-capi-engine.pdf');
// create the document instance
$document = Document::loadByFilename($fileToSign, $writer);
// create the signer instance
$signer = new Signer($document);
// let's use the PAdES modul and configure it
$module = new PadesModule();
$module->setCertificate('file://' . $assetsDirectory . '/certificates/setapdf-no-pw.pem');
// create a temporary version which represents the data which should get signed
$tmpDocument = $signer->preSign(new FileWriter($tempFile), $module);
// get the hash data from the module
$hashData = $module->getDataToSign($tmpDocument->getHashFile());
// the subject
$privateKey = 'SetaPDF-Demo';
// the password
$privateKeyPass = '';
// with pkeyutl we only need to pass the hash value, so get it
$hash = hash($module->getDigest(), $hashData, true);
// and write it to a temporary file
$tmpFileIn = TempFileWriter::createTempFile($hash);
// prepare a temporary file for the final signature
$tmpFileOut = TempFileWriter::createTempPath();
// build the command
$cmd = $opensslPath . "openssl pkeyutl -sign "
. '-keyform ENGINE -engine capi -inkey ' . escapeshellarg($privateKey) . ' '
. "-pkeyopt digest:" . $module->getDigest() . ' ' // this will allow us to sign the hash only
. '-passin pass:' . escapeshellarg($privateKeyPass) . ' '
. '-in ' . escapeshellarg($tmpFileIn) . ' '
. '-out ' . escapeshellarg($tmpFileOut) . ' 2>&1';
// execute it
exec($cmd, $out, $retValue);
if ($retValue !== 0) {
echo sprintf('An error occurs while calling OpenSSL through CLI (exit code %s).', $retValue);
var_dump($out);
die();
}
// get the signature data
$signatureValue = file_get_contents($tmpFileOut);
// pass it to the module
$module->setSignatureValue($signatureValue);
// get the final cms container
$cms = $module->getCms();
// and pass it to the main signer instance
$signer->saveSignature($tmpDocument, $cms);
