forked from chris2511/xca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathload_obj.h
More file actions
101 lines (84 loc) · 1.26 KB
/
load_obj.h
File metadata and controls
101 lines (84 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2020 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __LOAD_OBJ_H
#define __LOAD_OBJ_H
#include <QStringList>
class pki_base;
class load_base
{
public:
QString filter{};
QString caption{};
load_base();
virtual ~load_base();
virtual pki_base *loadItem(const QString &s);
virtual pki_base *newItem();
};
class load_key: public load_base
{
public:
load_key();
pki_base *newItem();
};
class load_req: public load_base
{
public:
load_req();
pki_base *newItem();
};
class load_cert: public load_base
{
public:
load_cert();
pki_base *newItem();
};
class load_pkcs7: public load_base
{
public:
load_pkcs7();
pki_base *newItem();
};
class load_pkcs12: public load_base
{
public:
load_pkcs12();
pki_base *loadItem(const QString &s);
};
class load_temp: public load_base
{
public:
load_temp();
pki_base *newItem();
};
class load_crl: public load_base
{
public:
load_crl();
pki_base *newItem();
};
class load_db: public load_base
{
public:
load_db();
};
class load_takey: public load_base
{
public:
load_takey();
};
class load_pkcs11: public load_base
{
public:
load_pkcs11();
};
class load_pem: public load_base
{
public:
load_pem();
pki_base *newItem();
};
#endif