User Tools

Site Tools


ssl_handling_with_openssl

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ssl_handling_with_openssl [2012/10/10 12:39]
root created
ssl_handling_with_openssl [2013/12/05 11:44] (current)
root
Line 15: Line 15:
   openssl req -new -key <​Filename of private key.key> -out <​Filename of CSR.csr>   openssl req -new -key <​Filename of private key.key> -out <​Filename of CSR.csr>
   ​   ​
-Fill out questions when asked. CN is very important.+Fill out questions when asked. CN is very important. Provide CSR to CA for signing.
   ​   ​
 ===== List content of CSR ===== ===== List content of CSR =====
  
   openssl req -noout -text -in <​Filename of CSR.csr>   openssl req -noout -text -in <​Filename of CSR.csr>
-  ​ 
  
 +===== List content of signed certificate or intermediate certificate =====
 +
 +  openssl x509 -in <​certificate filename.crt>​ -noout -text
 +
 +===== List content of signed certificate or intermediate certificate in der format =====
 +
 +  openssl x509 -in <​certificate filename.der>​ -inform der -text
 +
 +===== List information about web site SSL certificate =====
 +
 +  openssl s_client -showcerts -connect <host to check>:​443
ssl_handling_with_openssl.1349872772.txt.gz ยท Last modified: 2012/10/10 12:39 by root