Qore Programming Language Reference Manual
0.8.7
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
QC_SSLCertificate.dox.h
1
2
namespace
Qore {
4
5
class
SSLCertificate
{
6
7
public
:
9
20
constructor
(
string
pem);
21
22
public
:
24
33
constructor
(
binary
der);
34
35
public
:
37
39
copy
();
40
41
public
:
43
63
hash
getInfo
();
64
65
public
:
67
77
hash
getIssuerHash
();
78
79
public
:
81
91
date
getNotAfterDate
();
92
93
public
:
95
105
date
getNotBeforeDate
();
106
107
public
:
109
118
string
getPEM
();
119
120
public
:
122
132
*
binary
getPublicKey
();
133
134
public
:
136
146
string
getPublicKeyAlgorithm
();
147
148
public
:
150
160
hash
getPurposeHash
();
161
162
public
:
164
174
int
getSerialNumber
();
175
176
public
:
178
188
binary
getSignature
();
189
190
public
:
192
202
string
getSignatureType
();
203
204
public
:
206
216
hash
getSubjectHash
();
217
218
public
:
220
230
int
getVersion
();
231
};
232
};