Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 319 Bytes

File metadata and controls

11 lines (7 loc) · 319 Bytes

Generating Private Key and Certificate

Go to the bin folder and then create the private key and certificate by typing the following at the prompt:

openssl genrsa 1024 > private.key

openssl req -new -key private.key -out cert.csr

openssl x509 -req -in cert.csr -signkey private.key -out certificate.pem