QCA::CSRContext

Search for usage in LXR

QCA::CSRContext Class Referenceabstract

#include <QtCrypto>

Inheritance diagram for QCA::CSRContext:

Public Member Functions

 CSRContext (Provider *p)
 
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
 
virtual ConvertResult fromSPKAC (const QString &s)=0
 
virtual const CertContextPropsprops () const =0
 
virtual PKeyContextsubjectPublicKey () const =0
 
virtual QString toSPKAC () const =0
 
- Public Member Functions inherited from QCA::CertBase
 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

- Protected Member Functions inherited from QCA::BasicContext
 BasicContext (const BasicContext &from)
 
 BasicContext (Provider *parent, const QString &type)
 

Detailed Description

X.509 certificate request provider.

Note
This class is part of the provider plugin interface and should not be used directly by applications. You probably want CertificateRequest instead.

Definition at line 1428 of file qcaprovider.h.

Constructor & Destructor Documentation

◆ CSRContext()

QCA::CSRContext::CSRContext ( Provider * p)
inline

Standard constructor.

Parameters
pthe provider associated with this context

Definition at line 1437 of file qcaprovider.h.

Member Function Documentation

◆ canUseFormat()

virtual bool QCA::CSRContext::canUseFormat ( CertificateRequestFormat f) const
pure virtual

Returns true if the provider of this object supports the specified format, otherwise false.

Parameters
fthe format to test for support for.

◆ compare()

virtual bool QCA::CSRContext::compare ( const CSRContext * other) const
pure virtual

Returns true if this certificate request is equal to another certificate request, otherwise false.

Parameters
otherthe certificate request to compare with

◆ createRequest()

virtual bool QCA::CSRContext::createRequest ( const CertificateOptions & opts,
const PKeyContext & priv )
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.

Parameters
optsthe options to set on the certificate
privthe key to be used to sign the certificate

◆ fromSPKAC()

virtual ConvertResult QCA::CSRContext::fromSPKAC ( const QString & s)
pure virtual

Read Netscape SPKAC input and convert it into a certificate request.

Returns QCA::ConvertGood if successful, otherwise some error value.

Parameters
sthe input data

◆ props()

virtual const CertContextProps * QCA::CSRContext::props ( ) const
pure virtual

Returns a pointer to the properties of this certificate request.

◆ subjectPublicKey()

virtual PKeyContext * QCA::CSRContext::subjectPublicKey ( ) const
pure virtual

Returns a copy of this certificate request's public key.

The caller is responsible for deleting it.

◆ toSPKAC()

virtual QString QCA::CSRContext::toSPKAC ( ) const
pure virtual

Convert this certificate request to Netscape SPKAC format, and return the value.

Returns an empty string on error.


The documentation for this class was generated from the following file:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:26 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.