xca/lib/oid.h
Christian Hohnstaedt 4f1103a64f Close #72: Add checkbox for OCSP staple feature
Also support them in XCA template and transformation from
certificate and request.
2020-03-29 22:23:21 +02:00

32 lines
538 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2011 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __OID_H
#define __OID_H
class QString;
#include <QList>
#include <QMap>
typedef QList<int> NIDlist;
#ifndef NID_tlsfeature
extern int NID_tlsfeature;
#endif
extern NIDlist extkeyuse_nid;
extern NIDlist distname_nid;
extern int first_additional_oid;
extern QMap<QString,const char*> oid_name_clash;
extern QMap<QString,int> oid_lower_map;
/* reads additional OIDs from a file: oid, sn, ln */
void initOIDs();
#endif