답변:
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)
| grep "Public-Key"