Back to Browse

How to create a self-signed certificate using openssl

50.4K views
Oct 19, 2011
3:39

This short video shows how to create a self-signed certificate using the openssl command tools. For more information on openssl see http://openssl.org. Summary: - create a Certificate Signing Request (CSR) with the command: openssl req -new -newkey rsa:2048 -nodes -keyout localhost.key -out localhost.csr - self-sign the Certificate with the command: openssl x509 -req -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt For more tutorials, see https://brightminded.com/updates/

Download

0 formats

No download links available.

How to create a self-signed certificate using openssl | NatokHD