Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
5  
You are correct, it is not a real standard. When the SSLeay project (this later became the openssl project) needed a way to ASCII encode various public and private key files they were inspired by the PEM RFCs you cite and called the result a PEM file for lack of a better name. Now it refers to almost anything base64 encoded and wrapped with BEGIN and END lines. – GregS Mar 19 '11 at 1:31
1  
Your answer should be posted separately as an answer. – Bill the Lizard Mar 21 '11 at 15:27

4 Answers

up vote 12 down vote accepted

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:

#define PEM_STRING_X509_OLD     "X509 CERTIFICATE"
#define PEM_STRING_X509         "CERTIFICATE"
#define PEM_STRING_X509_PAIR    "CERTIFICATE PAIR"
#define PEM_STRING_X509_TRUSTED "TRUSTED CERTIFICATE"
#define PEM_STRING_X509_REQ_OLD "NEW CERTIFICATE REQUEST"
#define PEM_STRING_X509_REQ     "CERTIFICATE REQUEST"
#define PEM_STRING_X509_CRL     "X509 CRL"
#define PEM_STRING_EVP_PKEY     "ANY PRIVATE KEY"
#define PEM_STRING_PUBLIC       "PUBLIC KEY"
#define PEM_STRING_RSA          "RSA PRIVATE KEY"
#define PEM_STRING_RSA_PUBLIC   "RSA PUBLIC KEY"
#define PEM_STRING_DSA          "DSA PRIVATE KEY"
#define PEM_STRING_DSA_PUBLIC   "DSA PUBLIC KEY"
#define PEM_STRING_PKCS7        "PKCS7"
#define PEM_STRING_PKCS7_SIGNED "PKCS #7 SIGNED DATA"
#define PEM_STRING_PKCS8        "ENCRYPTED PRIVATE KEY"
#define PEM_STRING_PKCS8INF     "PRIVATE KEY"
#define PEM_STRING_DHPARAMS     "DH PARAMETERS"
#define PEM_STRING_SSL_SESSION  "SSL SESSION PARAMETERS"
#define PEM_STRING_DSAPARAMS    "DSA PARAMETERS"
#define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY"
#define PEM_STRING_ECPARAMETERS "EC PARAMETERS"
#define PEM_STRING_ECPRIVATEKEY "EC PRIVATE KEY"
#define PEM_STRING_CMS          "CMS"

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.

share|improve this answer
thanks! very helpful indeed. this is the most comprehensive list i've seen.... – hopia Mar 18 '11 at 23:25

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:

http://lapo.it/asn1js/

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

share|improve this answer
I may have slightly misinterpreted the focus of the question :) – Sami Koivu Mar 18 '11 at 17:44
1  
Thanks for the answer. That is fine. This info will useful to whoever is looking to parse PEM files. – hopia Mar 18 '11 at 23:32

----BEGIN SELF-ANSWER----
Ok, to make it official, and to comply with the Q&A StackExchange format, I'll be answering my own question here...

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.
----END SELF-ANSWER----

share|improve this answer

I am unsure if it's specific to OpenSSL, but the documentation for PEM Encryption Format may be what you're looking for.

share|improve this answer
Thanks, but I was looking for more comprehensive info on what other BEGIN-END statements are being used, like "BEGIN CERTIFICATE" and "BEGIN PRIVATE KEY". – hopia Mar 18 '11 at 17:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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