Since I am very new to SSL certificates, and also about creating and using them, I decided that StackOverflow members could help me.
I am from Holland, a common way of online payments is to implement iDEAL. Online payment protocol supported by large banks. I have to implement a "professional" version. This includes creating an RSA private key. Based on this key, I have to create a certificate and upload it to the web server.
I am on a windows machine and am completely confused what to do. I looked at the OpenSSL website because the guide sent me to this website to get the SSL Toolkit.
The manual contains two commands that must be completed to create the RSA key and certificate.
Teams:
openssl genrsa -des3 –out priv.pem -passout pass:myPassword 1024
and
openssl req -x509 -new -key priv.pem -passin pass:myPassword -days 3650 -out cert.cer
Is there a way to do this using a utility on a Windows machine? I downloaded PuTTy KeyGenerator. But I'm not sure what to do, I created a key (SSH-2 RSA, whatever that is ..), but how do I create a certificate with this key?
windows certificate ssl ssl-certificate
Ben Mar 01 '10 at 11:59 on 2010-03-01 11:59
source share