Archive | April, 2011

How to verify SSL cert from command line

When I need to verify an SSL certificate and the corresponding CA intermediate certs a good tool is openssl like this: openssl verify -CAfile cabundle.crt www.domain.com.crt Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post Print for later Bookmark [...]

When I need to verify an SSL certificate and the corresponding CA intermediate certs a good tool is openssl like this:

openssl verify -CAfile cabundle.crt www.domain.com.crt
View Comments Continue Reading →

Generate CSR with single command

Here’s a single command to generate a new key and CSR: openssl req -nodes -newkey rsa:2048 -keyout mydomain.key -out mydomain.csr Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post Print for later Bookmark in Browser Tell a friend

Here’s a single command to generate a new key and CSR:

openssl req -nodes -newkey rsa:2048 -keyout mydomain.key -out mydomain.csr
View Comments Continue Reading →