ssl
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ssl [2010/12/15 04:16] – k2patel | ssl [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== SSL / Openssl great way to secure it ====== | ||
+ | |||
==== SSL Issue and Resolution ==== | ==== SSL Issue and Resolution ==== | ||
**Generate 2048 Bit CSR for godaddy.** | **Generate 2048 Bit CSR for godaddy.** | ||
<code bash> | <code bash> | ||
- | openssl req -nodes -newkey rsa:2048 -keyout www.xyz.com.key -out www.xyz.com.csr | + | openssl req -nodes -newkey rsa:4096 -sha512 |
</ | </ | ||
Line 11: | Line 13: | ||
**To check if certificate and key is matching "Match the MODULUS" | **To check if certificate and key is matching "Match the MODULUS" | ||
<code bash> | <code bash> | ||
- | openssl rsa -modulus -in < | + | openssl rsa -noout |
- | openssl x509 -modulus -in < | + | openssl x509 -noout |
</ | </ | ||
Line 42: | Line 44: | ||
SSLCipherSuite SSLv3: | SSLCipherSuite SSLv3: | ||
</ | </ | ||
+ | |||
+ | **Print all available high ciphers.** | ||
+ | |||
+ | <code bash> | ||
+ | openssl ciphers HIGH | ||
+ | </ | ||
+ | |||
[[https:// | [[https:// | ||
Line 105: | Line 114: | ||
-----END CERTIFICATE----- | -----END CERTIFICATE----- | ||
</ | </ | ||
+ | |||
+ | == Thawte == | ||
[[https:// | [[https:// | ||
Line 110: | Line 121: | ||
[[https:// | [[https:// | ||
+ | == GoDaddy == | ||
+ | [[ https:// | ||
+ | |||
+ | == Verisign == | ||
+ | [[ https:// | ||
==== Self Signed SSL ==== | ==== Self Signed SSL ==== | ||
== Generating Private Key == | == Generating Private Key == | ||
<code bash> | <code bash> | ||
- | openssl genrsa -des3 -out www.k2patel.com.key | + | openssl genrsa -des3 -out www.k2patel.com.key |
</ | </ | ||
Line 134: | Line 150: | ||
<code bash> | <code bash> | ||
- | openssl x509 -req -days 365 -in www.k2patel.com.csr -signkey www.k2patel.com.csr -out www.k2patel.com.crt | + | openssl x509 -req -days 365 -in www.k2patel.com.csr -signkey www.k2patel.com.key -out www.k2patel.com.crt |
</ | </ | ||
+ | ==== Wilcard Certificate ==== | ||
+ | Wildcard Certificate is nothing diff. in mechanism except how much you pay.\\ | ||
+ | Please read following information before you dive in. | ||
- | + | * While creating wildcard certificate you need to use " | |
+ | * e.g. *.k2patel.in | ||
+ | * You can place wildcard certificate on any number of server simply you always need KEY / CRT combination moved / copied. | ||
+ | * so you can have multiple server with multiple sub-domain without issue. | ||
+ | * You do not need any special way to install / use it simply use as described above. |
ssl.1292386599.txt.gz · Last modified: 2020/08/10 02:29 (external edit)