前端之家收集整理的这篇文章主要介绍了
linux – 我有一个密钥对.如何确定密钥长度?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在
Linux中使用命令行中的OpenSSL,是否有某种
方法可以检查密钥(公共密钥或私有密钥)以确定密钥大小?
openssl rsa -in private.key -text -noout
输出的顶行将显示密钥大小.
例如:
Private-Key: (2048 bit)
要从证书中查看密钥大小:
$openssl x509 -in public.pem -text -noout | grep "RSA Public Key"
RSA Public Key: (2048 bit)
原文链接:https://www.f2er.com/linux/402838.html