Friday, March 31, 2023

Creating an SSL Certificate Signing Request

To create a CSR, use the openssl command.

openssl req -nodes -new -x509 -keyout server.key -out server.cert

The -nodes option tells openssl not to use DES to encrypt the key.

No comments:

Post a Comment