-1

您使用哪个程序或命令从受密码保护的 p12 中提取公钥?我正在尝试使用该命令hydra,但我认为它仅适用于网络

4

1 回答 1

0

您可以使用 openssl 来检查、转换等 p12 文件。

例如:

openssl pkcs12 -info -in example.p12

或者

openssl pkcs12 -in example.p12 -out example.pem -nodes

等等

您可以让 openssl 从文件或标准输入中读取密码。例如:

openssl [...] -pass stdin

有关更多想法,请参见 openssl 手册页。

于 2018-11-27T17:56:09.290 回答