【发布时间】:2019-04-29 04:43:20
【问题描述】:
您使用哪个程序或命令从受密码保护的 p12 中提取公钥?我正在尝试使用命令hydra但我认为它只适用于网络
【问题讨论】:
-
开膛手约翰密码破解者
标签: security encryption public-key-encryption dictionary-attack
您使用哪个程序或命令从受密码保护的 p12 中提取公钥?我正在尝试使用命令hydra但我认为它只适用于网络
【问题讨论】:
标签: security encryption public-key-encryption dictionary-attack
您可以使用 openssl 来检查、转换等 p12 文件。
例如:
openssl pkcs12 -info -in example.p12
或
openssl pkcs12 -in example.p12 -out example.pem -nodes
等等
您可以让 openssl 从文件或标准输入中读取密码。例如:
openssl [...] -pass stdin
有关更多想法,请参阅 openssl 手册页。
【讨论】: