The CertificateRequest class provides a convenient interface for an X.509 certificate signing request. More...
#include <CertificateRequest>
CertificateRequest () | |
CertificateRequest ( const CertificateRequest & other ) | |
CertificateRequest ( QIODevice * io, QSsl::EncodingFormat format = QSsl::Pem ) | |
~CertificateRequest () | |
int | error () const |
QString | errorString () const |
bool | isNull () const |
QList<QByteArray> | nameEntryAttributes () |
QStringList | nameEntryInfo ( Certificate::EntryType attribute ) |
QStringList | nameEntryInfo ( const QByteArray & oid ) |
void | swap ( CertificateRequest & other ) |
QByteArray | toDer () |
QByteArray | toPem () |
QString | toText () |
int | version () const |
CertificateRequest & | operator= ( const CertificateRequest & other ) |
The CertificateRequest class provides a convenient interface for an X.509 certificate signing request.
Create a null CertificateRequest.
Create a CertificateRequest that is a copy of other.
Load a CertificateRequest from the specified QIODevice using the specified format.
Clean up.
Returns the last error that occurred when using this object. The values used are those of gnutls. If there has not been an error then it is guaranteed to be 0.
Returns a string describing the last error that occurred when using this object.
Returns true if this CertificateRequest is null (uninitialised).
Returns the list of attributes that are present in this requests distinguished name. The attributes are returned as OIDs.
Returns the list of entries for the attribute specified.
Returns the list of entries for the attribute specified by the oid.
Returns a QByteArray containing this request encoded as DER.
Returns a QByteArray containing this request encoded as PEM.
Returns a QString containing this request as a human readable string.
Returns the version of the certificate signing request.