
php 实现 pkcs7 签名
问题:
与第三方对接时,需要使用 java 实现 pkcs7 签名,在 php 中该如何实现此功能?
答案:
立即学习“PHP免费学习笔记(深入)”;
php 中可以通过 openssl_pkcs7_verify 函数进行 pkcs7 签名。
实现代码:
<?php
/**
* 加签
*
* @param string $plaintext 明文
* @param string $password 密钥密码
* @param string $privateKeyFile 私钥文件
* @param string $certificateFile 证书文件
*
* @return string
*/
function pkcs7_sign($plaintext, $password, $privateKeyFile, $certificateFile)
{
$privateKey = openssl_pkey_get_private('file://' . $privateKeyFile, $password);
$certificate = openssl_x509_read(file_get_contents('file://' . $certificateFile));
$signature = openssl_pkcs7_sign($plaintext, 'file://sign.p7', $certificate, $privateKey, ['detach' => true]);
// 将签名转为 Base64 编码
return base64_encode($signature);
}以上就是PHP如何实现与Java兼容的PKCS7签名?的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号