vote up 2 vote down star
1

I want to use Perl to extract information from a Certificate Signing Request, preferably without launching an external openssl process. Since a CSR is stored in a base64-encoded ASN.1 format, I tried the Convert::PEM module. But it requires an ASN.1 description of the content, which I haven't been able to put together (ASN.1 being the beast it is).

Does anybody have the right ASN.1 description for a CSR or a module that parses such a request ?

flag

2 Answers

vote up 5 vote down check

Maybe Convert::X509 can help you. See also Convert::X509::Parser.

link|flag
vote up 3 vote down

Your real question is what format are CSRs using? There are two formats to do it, PKCS #10 and SPKAC. The former is described in RFC 2986. I don't know where the latter is described.

link|flag
I'll probably need to support both formats since the CSRs will be generated by third parties. Thanks for the pointer to RFC2986, I'll try to put together an ASN.1 description based on it. – kixx Oct 23 '08 at 6:35

Your Answer

Get an OpenID
or

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