logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Generate CSR - OpenSSL Certificate Requests | Online Free DevTools by Hexmos

Generate CSR with OpenSSL for secure communication. Create certificate signing requests, self-signed certificates, and manage key-pairs easily. Free online tool, no registration required.

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}}

  • Generate a self-signed certificate and a corresponding key-pair, storing both in a file:

openssl req -new -x509 -newkey {{rsa}}:{{4096}} -keyout {{filename.key}} -out {{filename.cert}} -subj "{{/C=XX/CN=foobar}}" -days {{365}}