Collections:
Other Resources:
OpenSSL CSR File Structure and Components
What is the OpenSSL CSR file structure and components?
✍: FYIcenter.com
By default, CSR (Certificate Signing Request) files generated by the
OpenSSL "req" command follow these rules:
1. CSR files are stored in PEM (Privacy-enhanced mail) format, which uses DER (Distinguished Encoding Rules) standard to serialize data elements into a binary string, then uses Base64 to encode the binary string into a printable character string.
2. CSR data elements follow the "RFC5967 - PKCS #10: Certification Request Syntax Specification, Version 1.7" specification.
The RFC5867, or PKCS#10, specifies that a CSR should have 3 parts:
1. "certificationRequestInfo" - Provides information of the certification request, which contains:
2. "signatureAlgorithm" - Provides what algorithm was used to generate the digital signature of the "certificationRequestInfo".
3. "signature" - Provides the digital signature of the "certificationRequestInfo", signed by the private key of the subject. The signature can be verified by the public key included in the "certificationRequestInfo".
⇒ OpenSSL "req -text" Output and CSR Components
2018-01-19, ∼6055🔥, 1💬
Popular Posts:
Certificate summary - Owner: *.boston.com, "The Boston Globe ", L=Boston, ST=MASSACHUSETTS, US Issue...
Certificate Summary: Subject: GlobalSign RSA OV SSL CA 2018 Issuer: GlobalSign Expiration: 2028-11-2...
Certificate Summary: Subject: sni.cloudflaressl.com Issuer: CloudFlare Inc ECC CA-2 Expiration: 2019...
Certificate Summary: Subject: Certum Domain Validation CA SHA2 Issuer: Certum Trusted Network CA Exp...
How to set a keystore key pair entry's password with Portecle? Note that PKCS #12 keystore's do not ...