I want to generate a X509 v3 certificate using a CSR (RFC2986), but the RFC says PKCS10 (CSR) supports only v1. Can anyone tell me the difference?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The PKCS#10 version field does not refer to the version of the requested X.509 certificate.

The version field is used to describe the format of the subsequent ASN.1 object. A correct decoder should read the version first and then decodes the rest of the encoded object fields according to this value.

Current formats:

  • X509 certificates version is 3
  • PKCS#10 CSR version is 1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.