I need to parse .PEM files.
I know that the standard for "Privacy-enhanced Electronic Mail" is defined in RFCs 1421-24. But they don't seem to mention some text I find inside OpenSSL .pem files (eg. "Key Attributes", "BEGIN CERTIFICATE", etc...)
Is this an OpenSSL-specific format?
|
|
|||||||||
|
|
It's often beneficial to look at an existing implementation and see what they do. OpenSSL defines these BEGIN and END markers in crypto/pem/pem.h. For example, revision 1.68 has the following:
And as far as I know, there is no master list of BEGIN/END markers. They're pretty much defined on an as-needed basis by an implementation. And then if you want to inter-op with that implementation, you add the string to your own. |
|||
|
|
To get you started: As far as I know, if there's a part that's human-readable (has words and stuff), that's meant for human operators to know what the certification in question is, expiry dates, etc, for a quick manual verification. So you can ignore that. You'll want to parse what's between the BEGIN-END blocks. Inside, you'll find a Base64 encoded entity that you need to Base64 decode into bytes. These bytes represent a DER encoded certificate/key/etc. I'm not sure what good libraries you could use for parsing the DER data. As a test to understand what data is inside each block, you can paste what's between the BEGIN-END blocks to this site which does ASN.1 decoding in JavaScript: Although I wouldn't go pasting any production environment private keys to any site (although that seems to be just a javascript). Base64: http://en.wikipedia.org/wiki/Base64 DER: http://en.wikipedia.org/wiki/Distinguished_Encoding_Rules ASN.1: http://en.wikipedia.org/wiki/Abstract_Syntax_Notation_One |
|||||||
|
|
----BEGIN SELF-ANSWER---- I found an old thread regarding this issue. It looks like there is no "official" standard format for the encapsulation boundaries and the best way to determine this is by guessing the contents based on well-known keywords you find in the 'BEGIN' statement: http://www.ietf.org/mail-archive/web/pkix/current/msg03563.html As answered by indiv, for the full list of the keywords, refer to the openssl crypto/pem/pem.h header file. |
|||
|
|
|
I am unsure if it's specific to OpenSSL, but the documentation for PEM Encryption Format may be what you're looking for. |
|||
|