SSL : How to check if current certificate is sha1 or sha2 from command line
Problem :
You want to check if a website SSL certificate is sha1 or sha2 algorithm from command line.
Solution :
Assuming your are running a *nix based OS like OSX or Linux with OpenSSL installed.
This is the openssl command to check your website certificate from the command line :
> openssl s_client -connect www.yoursite.com:443 < /dev/null 2>/dev/null | openssl x509 -text -in /dev/stdin | grep "Signature Algorithm"
the result should look like
Signature Algorithm: sha1WithRSAEncryption for sha1
and
Signature Algorithm: sha256WithRSAEncryption for sha2
See also : SSL : How to check if current certificate is sha1 or sha2
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17k Golang : When to use init() function?
+11.7k Golang : How to parse plain email text and process email header?
+13.9k Elastic Search : Mapping date format and sort by date
+15.3k Golang : Get digits from integer before and after given position example
+7.1k Golang : Word limiter example
+4.5k MariaDB/MySQL : Form select statement or search query with Chinese characters
+8.5k Golang : Gorilla web tool kit schema example
+15.4k Golang : Get current time from the Internet time server(ntp) example
+20.4k Golang : Underscore or snake_case to camel case example
+14.9k Golang : Get HTTP protocol version example
+10k Golang : Wait and sync.WaitGroup example