Qore Programming Language Reference Manual  0.8.7
 All Classes Namespaces Functions Variables Groups Pages
QC_SSLPrivateKey.dox.h
1 
2 namespace Qore {
4 
5 class SSLPrivateKey {
6 
7 public:
9 
21  constructor(string pem, *string pass);
22 
23 public:
25 
34  constructor(binary der);
35 
36 public:
38 
40  copy();
41 
42 public:
44 
54 int getBitLength();
55 
56 public:
58 
71 hash getInfo();
72 
73 public:
75 
84 string getPEM();
85 
86 public:
88 
98 string getType();
99 
100 public:
102 
109 int getVersion();
110 };
111 };