2020-10-28 19:03:16 +00:00
|
|
|
# openssl req
|
|
|
|
|
|
|
|
> OpenSSL command to manage PKCS#10 Certificate Signing Requests.
|
|
|
|
> More information: <https://www.openssl.org/docs/manmaster/man1/openssl-req.html>.
|
|
|
|
|
|
|
|
- Generate a certificate signing request to be sent to a certificate authority:
|
|
|
|
|
|
|
|
`openssl req -new -sha256 -key {{filename.key}} -out {{filename.csr}}`
|
|
|
|
|
2020-12-26 21:41:12 +00:00
|
|
|
- Generate a self-signed certificate and a corresponding keypair, storing both in a file:
|
2020-10-28 19:03:16 +00:00
|
|
|
|
|
|
|
`openssl req -new -x509 -newkey {{rsa}}:{{4096}} -keyout {{filename.key}} -out {{filename.cert}} -subj "{{/C=XX/CN=foobar}}" -days {{365}}`
|