OpenSSL PKCS10 CSR Utilities: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== PKCS10 (CSR) Information == * Extension(s) .csr, .pem, .p10 * PKCS #10 (PKCS10) is the most common Certificate Signing Request (CSR) format. The term CSR often implies PKCS...") |
No edit summary |
||
Line 13: | Line 13: | ||
# [http://fileformats.archiveteam.org/wiki/PKCS10 PKCS10 Certificate Signing Request] | # [http://fileformats.archiveteam.org/wiki/PKCS10 PKCS10 Certificate Signing Request] | ||
# [https://www.openssl.org/docs/manmaster/apps/req.html OpenSSL CSR] | # [https://www.openssl.org/docs/manmaster/apps/req.html OpenSSL CSR] | ||
[[Category:Software]] | [[Category:Software]] | ||
[[Category:SSL]] | [[Category:SSL]] |
Revision as of 21:31, 8 January 2016
PKCS10 (CSR) Information
- Extension(s) .csr, .pem, .p10
- PKCS #10 (PKCS10) is the most common Certificate Signing Request (CSR) format. The term CSR often implies PKCS10 format, though other CSR formats exist.
- A PEM-encoded PKCS10 file is plain text, with base64-encoded payload data. It contains a line that reads "-----BEGIN CERTIFICATE REQUEST-----" or "-----BEGIN NEW CERTIFICATE REQUEST-----".
PKCS10 Commands
- View the contents of a PKCS10 (CSR) PEM-formatted file.
- # openssl req -noout -text -in <certificate>.csr
- Generate a new PKCS10 (CSR) PEM-formatted file.
- # openssl req -new -key <keyfile>.key -out <certificate>.csr