有私钥、公钥、x509 Pem 文件。我想从这些文件中获取有关 RSA 公钥的信息。
我可以通过shell脚本来确认它,如下所示。$ openssl x509 -in cert.pem -text
...
Subject Public Key Info:
Public Key Algorithm: rsaEncryption
RSA Public Key: (2048 bit)
Modulus (2048 bit):
00:e1:92:dc:05:84:c7:e1:2d:db:f3:48:84:90:32:
...
da:7d:2f:95:d2:ab:28:6e:6c:be:0a:af:e0:cb:24:
18:db
Exponent: 65537 (0x10001)
...
我可以以同样的方式在 PHP OpenSSL 库中获取 Modulus 和 Exponent 的值吗?