~ubuntu-branches/ubuntu/oneiric/xca/oneiric

« back to all changes in this revision

Viewing changes to lib/oid.h

  • Committer: Bazaar Package Importer
  • Author(s): Tino Keitel
  • Date: 2009-09-14 20:55:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090914205544-l4qsm2tjimhd62vo
Tags: upstream-0.7.0
ImportĀ upstreamĀ versionĀ 0.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* vi: set sw=4 ts=4:
 
2
 *
 
3
 * Copyright (C) 2001 - 2007 Christian Hohnstaedt.
 
4
 *
 
5
 * All rights reserved.
 
6
 */
 
7
 
 
8
 
 
9
class QString;
 
10
#include <qlist.h>
 
11
 
 
12
typedef QList<int> NIDlist;
 
13
/* reads additional OIDs from a file: oid, sn, ln */
 
14
 
 
15
void initOIDs();
 
16
 
 
17
/* reads a list of OIDs/SNs from a file and turns them into a QValueList
 
18
 * of integers, representing the NIDs. Usually to be used by NewX509 for
 
19
 * the list of ExtendedKeyUsage and Distinguished Name
 
20
 */
 
21
 
 
22
NIDlist readNIDlist(QString fname);