elgolondrino
elgolondrino

Reputation: 665

How to generate SSL certificate using openSSL?

I've a server app that uses non-secure connection with clients and I would like to add SSL certificate to my server. I've installed OpenSSL version 1.0.1e Version on Windows 7. And my first question is how to create SSL certificate? And if possible can I make random keys for so that my server could change keys every specific time?

Upvotes: 0

Views: 1463

Answers (1)

ReinaD
ReinaD

Reputation: 176

Your idea is good but requires a lot of work. The earlier suggestion is correct. It would be best to just purchase an SSL certificate from top CAs.

There are a lot of cheap but secure certificates you can get depending on your needs, you just need to generate a CSR (Certificate Signing Request) from your web server (In your case - OpenSSL). Now a days, some CAs also offers an Auto-CSR where they will be creating the CSR for you. You may also check it here: https://www.globalsign.com/support/csr/autocsr_domain_organization.php

Upvotes: 2

Related Questions