OpenSSL: Find Out SSL Key Length – Linux Command Line

From the following article you’ll learn how to find out a key length of an SSL Certificate from the Linux command line, using OpenSSL utility.

The information about the key size can be retrieved from the several sources.

We can get the information about key length from the file with a private key, from the SSL certificate file or we can determine it directly from the https website.

Use the following OpenSSL commands from the Linux command line to get a key length:

Determine a Key Size from a Private Key

Linux command that retrieves a key size from a file with the private key (secret.key):

$ openssl rsa -in secret.key -text -noout | grep "Private-Key"
Private-Key: (2048 bit)

Find Out a Key Length from an SSL Certificate

Find out a key size from a file with the certificate (certificate.crt), using OpenSSL:

$ openssl x509 -in certificate.crt -text -noout | grep "Public-Key"
RSA Public-Key: (2048 bit)

Determine a Key Length from an HTTPS Site

Find out a key size from an https website, lets say google.com:

$ echo | openssl s_client -connect google.com:443 2>/dev/null | openssl x509 -text -noout | grep "Public-Key"
Public-Key: (2048 bit)
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments (1)
Comment By ONLINE PLACEMENT TRAINING - Wed, Dec 30th, 2020 12:30 PM
Hi, Thanks for sharing. Very informative post, that I have ever read, the strategy given is really very helpful....Here I’m giving best CRT ONLINE TRAINING details, once go through it. <a href="https://www.gobrainwiz.in/pages/crt">CRT training</a>
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
ZFS: Verify/change properties of a zfs filesystem
Viewed 2508 times since Sun, Jun 3, 2018
10 Linux DIG Command Examples for DNS Lookup
Viewed 10965 times since Sun, Sep 30, 2018
stunnel: Authentication
Viewed 9091 times since Fri, Sep 28, 2018
How to automate SSH login with password? ssh autologin
Viewed 2618 times since Fri, Jun 8, 2018
HOWTO: Use SSL/port 465 in smarthost stunnel
Viewed 3702 times since Fri, Sep 28, 2018
How to do a Filesystem Resize (ext3/ext4) on Redhat running on VMware
Viewed 10925 times since Wed, Jul 25, 2018
RHEL: Multipathing basics
Viewed 8717 times since Sat, Jun 2, 2018
Learn Linux System Auditing with Auditd Tool on CentOS/RHEL
Viewed 4171 times since Fri, Apr 5, 2019
RHEL: Crash kernel dumps configuration and analysis on RHEL 5
Viewed 7095 times since Sat, Jun 2, 2018
Inxi – A Powerful Feature-Rich Commandline System Information Tool for Linux
Viewed 18838 times since Sat, Jun 2, 2018