represents an X509 certificate, reference-counted, dynamically-allocated only
More...
#include <QoreSSLCertificate.h>
|
virtual DLLLOCAL | ~QoreSSLCertificate () |
| the destructor is protected to ensure that it's only dynamically allocated (use deref() to delete)
|
|
virtual DLLLOCAL | ~AbstractPrivateData () |
| as these objects are reference counted, the destructor should be called only when the reference count = 0 and not manually
|
|
represents an X509 certificate, reference-counted, dynamically-allocated only
◆ QoreSSLCertificate() [1/4]
DLLEXPORT QoreSSLCertificate::QoreSSLCertificate |
( |
X509 * |
c | ) |
|
creates the object from a pointer to an X509 data structure, the QoreSSLCertificate object takes ownership of the X509 pointer
- Parameters
-
c | a pointer to an X509 data structure, the QoreSSLCertificate object takes ownership of the X509 pointer |
◆ QoreSSLCertificate() [2/4]
creates the object from a pointer to a BinaryNode object (certificate data in DER format)
- Parameters
-
bin | a pointer to a BinaryNode object with the raw binary certificate information |
xsink | Qore-language exceptions are raised here in case of errors |
◆ QoreSSLCertificate() [3/4]
create the object from a pointer to a QoreString representing the X.509 certificate in PEM format
- Parameters
-
str | a pointer to a QoreString with the certificatge in PEM format |
xsink | Qore-language exceptions are raised here in case of errors |
◆ QoreSSLCertificate() [4/4]
DLLLOCAL QoreSSLCertificate::QoreSSLCertificate |
( |
const char * |
fn, |
|
|
ExceptionSink * |
xsink |
|
) |
| |
creates the object from a filename
- Parameters
-
fn | the filename of the certificate file in PEM format |
xsink | Qore-language exceptions are raised here in case of errors |
◆ getDER()
returns a binary in DER format representing the certificate, caller owns the BinaryNode reference count returned
- Returns
- a binary in DER format representing the certificate, caller owns the BinaryNode reference count returned
- Since
- Qore 0.9
◆ getPEM()
returns a string in PEM format representing the certificate; caller owns the QoreStringNode reference returned
- Returns
- a string in PEM format representing the certificate; caller owns the QoreStringNode reference returned
The documentation for this class was generated from the following file: