xca/lib/oid.h
Christian Hohnstädt 1adcceaa66 Drop OpenSSL backward comatibility for NID_tlsfeature
it was not defined for OpenSSL < 1.1.0
which is not supported anymore anyway.
2021-06-01 17:48:37 +02:00

29 lines
481 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;
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