-
Notifications
You must be signed in to change notification settings - Fork 141
Generating Certificate Request with OpenSSL
Endi S. Dewata edited this page Apr 14, 2021
·
5 revisions
To generate a certificate request with a new key:
$ openssl req \ -new \ -newkey rsa:2048 \ -nodes \ -keyout testuser.key \ -subj "/UID=testuser/DC=example/DC=com" \ -out testuser.csr
To generate a certificate request with an existing key:
$ openssl req \ -new \ -key testuser.key \ -nodes \ -subj "/UID=testuser/DC=example/DC=com" \ -out testuser.csr
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |