1

我有可以在浏览器中看到的证书 - 由 VeriSign 签名 - G3 但是当我尝试使用 pkcs12 或 x509 或 pkcs7 之类的 openSSL(或 PHP)读取时 - 错误如下:

openssl pkcs12 -in cert.to.test.cer -clcerts -nokeys -out mycert.crt

28685:error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag:tasn_dec.c:1306:
28685:error:0D06C03A:asn1 encoding routines:ASN1_D2I_EX_PRIMITIVE:nested asn1 error:tasn_dec.c:830:
28685:error:0D08303A:asn1 encoding routines:ASN1_TEMPLATE_NOEXP_D2I:nested asn1 error:tasn_dec.c:749:Field=version, Type=PKCS12

在 PHP 中读取证书的参数可以做什么?谢谢。

4

1 回答 1

3

你可以试试

openssl x509 -in certificate.der -inform der -text -noout

可能是 DER 编码证书

于 2011-06-23T08:43:08.953 回答