我不知道有一个带有简单 API 的 PHP 库。
我已经实现了几个库,但是可以帮助完成任务。asn1、crypto-util和x509可通过 composer 获得。
这是从 PKCS7 PEM 文件中提取所有证书的基本概念证明:
<?php
use ASN1\Element;
use ASN1\Type\Constructed\Sequence;
use CryptoUtil\PEM\PEM;
use X509\Certificate\Certificate;
require __DIR__ . "/vendor/autoload.php";
$pem = PEM::fromFile("path-to-your.p7b");
// ContentInfo: https://tools.ietf.org/html/rfc2315#section-7
$content_info = Sequence::fromDER($pem->data());
// SignedData: https://tools.ietf.org/html/rfc2315#section-9.1
$signed_data = $content_info->getTagged(0)->asExplicit()->asSequence();
// ExtendedCertificatesAndCertificates: https://tools.ietf.org/html/rfc2315#section-6.6
$ecac = $signed_data->getTagged(0)->asImplicit(Element::TYPE_SET)->asSet();
// ExtendedCertificateOrCertificate: https://tools.ietf.org/html/rfc2315#section-6.5
foreach ($ecac->elements() as $ecoc) {
$cert = Certificate::fromASN1($ecoc->asSequence());
echo $cert->toPEM() . "\n";
}
ASN.1 处理非常容易出错。我已经省略了上面示例中的所有完整性检查,但是底层库会在错误时抛出异常。
我希望这能提供一些指导,以防有人需要在不依赖外部程序的情况下解析 PKCS #7 结构。