WIN64 using OpenSSL to generate an SSL certificate
Download OpenSSL http://slproweb.com/products/Win32OpenSSL.html
Generate the server-side private key (key file):
OpenSSL genrsa-des3-out Root.key 1024
Enter your password 123456
Request to establish a certificate application file ROOT.CSR:
OpenSSL req-new-key root.key-out root.csr-config openssl.cfg
Create a 10-year root certificate root.crt
OpenSSL x509-req-days 3650-sha1-extensions v3_ca-signkey root.key-in root.csr-out root.crt
To establish a server certificate key:
OpenSSL genrsa-des3-out Server.key 2048
Create the server certificate request file, the password is still 123456:
OpenSSL req-new-key server.key-out server.csr-config openssl.cfg
Create a 10-year server certificate SERVER.CRT with a password of 123456:
OpenSSL x509-req-days 3650-md5-extensions v3_req-ca root.crt-cakey root.key-cacreateserial-in server.csr-out Serv Er.crt
WIN64 using OpenSSL to generate an SSL certificate