Qt Cryptographic Architecture
|
#include <QtCrypto>
Public Member Functions | |
virtual bool | canUseFormat (CertificateRequestFormat f) const =0 |
virtual bool | compare (const CSRContext *other) const =0 |
virtual bool | createRequest (const CertificateOptions &opts, const PKeyContext &priv)=0 |
CSRContext (Provider *p) | |
virtual ConvertResult | fromSPKAC (const QString &s)=0 |
virtual const CertContextProps * | props () const =0 |
virtual PKeyContext * | subjectPublicKey () const =0 |
virtual QString | toSPKAC () const =0 |
![]() | |
CertBase (Provider *p, const QString &type) | |
virtual ConvertResult | fromDER (const QByteArray &a)=0 |
virtual ConvertResult | fromPEM (const QString &s)=0 |
virtual QByteArray | toDER () const =0 |
virtual QString | toPEM () const =0 |
Additional Inherited Members | |
![]() | |
BasicContext (Provider *parent, const QString &type) | |
BasicContext (const BasicContext &from) | |
X.509 certificate request provider.
|
inline |
Standard constructor.
p | the provider associated with this context |
|
pure virtual |
Returns true if the provider of this object supports the specified format, otherwise false.
f | the format to test for support for. |
|
pure virtual |
Create a certificate request based on the given options and private key.
Returns true if successful, otherwise false.
If successful, this object becomes the certificate request. If unsuccessful, this object is considered to be in an uninitialized state.
opts | the options to set on the certificate |
priv | the key to be used to sign the certificate |
|
pure virtual |
Returns a pointer to the properties of this certificate request.
|
pure virtual |
Returns true if this certificate request is equal to another certificate request, otherwise false.
other | the certificate request to compare with |
|
pure virtual |
Returns a copy of this certificate request's public key.
The caller is responsible for deleting it.
|
pure virtual |
Convert this certificate request to Netscape SPKAC format, and return the value.
Returns an empty string on error.
|
pure virtual |
Read Netscape SPKAC input and convert it into a certificate request.
Returns QCA::ConvertGood if successful, otherwise some error value.
s | the input data |