Tag Archives: SSL
Creating an easy to deploy SSL certificate in PEM format
When ordering a secure certificate, most often one has to deal with the following files: certificate key file (aka private key): .key certificate request file: .csr primary certificate file (issued by the CA): .crt certificate chain (aka intermediate certificate, or … Continue reading
Domino 8.5 SSL Key Import Into Keyring File
Domino Server SSL Key Import By default, the SSL key order process in the Domino Administrator assumes that only single domain certificates are used. Hence, when you have a multi domain UCC or a wildcard certificate, it has to be … Continue reading
Verifying SSL Certificates
Problem You have a few SSL cert files on your server, but you are not sure which one is the newest, or the right cert to use. Solution Look at the contents of a CSR openssl req -noout -text -in … Continue reading
How to add a secure cert to IIS on Windows
To add an SSL cert to IIS 5 on Windows, you need two separate steps: Create a p12 (pkcs12) cert file: cat server.key server.crt > server.pem openssl pkcs12 -export -in server.pem -out server.p12 -name “server” Import the p12 file into … Continue reading
How to remove a passphrase from an SSL cert key
Here are the steps to remove a pass phrase from a cert key. This solution was originally discovered on the modssl website: cp server.key server.key.org openssl rsa -in server.key.org -out server.key Make sure the key is readable by root only, … Continue reading
Do you need a secure certificate (SSL/HTTPS) for your site?
A secure certificate (aka SSL cert) allows a web site to secure the connection between the web server and the visitor. That allows protection of the users privacy and the confidentiality of the data. A secure certificate technically does the … Continue reading
