Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您使用哪个程序或命令从受密码保护的 p12 中提取公钥?我正在尝试使用该命令hydra,但我认为它仅适用于网络
hydra
您可以使用 openssl 来检查、转换等 p12 文件。
例如:
openssl pkcs12 -info -in example.p12
或者
openssl pkcs12 -in example.p12 -out example.pem -nodes
等等
您可以让 openssl 从文件或标准输入中读取密码。例如:
openssl [...] -pass stdin
有关更多想法,请参见 openssl 手册页。