~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to certs/README

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This directory contains XML files that have SSL certificates in them.
 
2
There should be at least a rootcert.xml file, but you can add more
 
3
files if you want.
 
4
 
 
5
The format is simple, there is one <store> element in each file, with
 
6
any number of <certificate> child elements.  In each certificate, there
 
7
is a <data> tag to contain the certificate data.  Example:
 
8
 
 
9
  <store>
 
10
    <certificate>
 
11
      <data>Lots of nice data here</data>
 
12
    </certificate>
 
13
    <certificate>
 
14
      <data>Data of another cert</data>
 
15
    </certificate>
 
16
    ...
 
17
  </store>
 
18
 
 
19
The data is DER+Base64 format, which is basically PEM but without the
 
20
header, footer, or newlines.
 
21