This directory contains XML files that have SSL certificates in them.
There should be at least a rootcert.xml file, but you can add more
files if you want.

The format is simple, there is one <store> element in each file, with
any number of <certificate> child elements.  In each certificate, there
is a <data> tag to contain the certificate data.  Example:

  <store>
    <certificate>
      <data>Lots of nice data here</data>
    </certificate>
    <certificate>
      <data>Data of another cert</data>
    </certificate>
    ...
  </store>

The data is DER+Base64 format, which is basically PEM but without the
header, footer, or newlines.

