mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
(copyright and licence itself remain unchanged) fix configure to set Qt include dir code justifying
23 lines
486 B
C++
23 lines
486 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
|
|
class QString;
|
|
#include <qlist.h>
|
|
|
|
typedef QList<int> NIDlist;
|
|
/* reads additional OIDs from a file: oid, sn, ln */
|
|
|
|
void initOIDs();
|
|
|
|
/* reads a list of OIDs/SNs from a file and turns them into a QValueList
|
|
* of integers, representing the NIDs. Usually to be used by NewX509 for
|
|
* the list of ExtendedKeyUsage and Distinguished Name
|
|
*/
|
|
|
|
NIDlist readNIDlist(QString fname);
|