|
|
|
|
Location:
signed.h
Link against: crypto.lib
class CSigningKeyParameters : public CBase;
Contains the parameter information required by some signing algorithms.
The DSA signing algorithm needs parameters as well as a key. Currently, this class only contains DSA parameters.
CBase - Base class for all classes to be instantiated on the heap
CSigningKeyParameters - Contains the parameter information required by some signing algorithms
Defined in CSigningKeyParameters:
NewL(), NewL(), NewLC(), NewLC(), SetDSAParamsL(), ~CSigningKeyParameters()
Inherited from CBase:
Delete(),
Extension_(),
operator new()
static IMPORT_C CSigningKeyParameters *NewL();
Creates a new signing key parameters object.
|
static IMPORT_C CSigningKeyParameters *NewLC();
Creates a new signing key parameters object and puts a pointer to the new object onto the cleanup stack.
|
static IMPORT_C CSigningKeyParameters *NewL(const CSigningKeyParameters &aParameters);
Creates a new signing key parameters object copied from an existing object.
|
|
static IMPORT_C CSigningKeyParameters *NewLC(const CSigningKeyParameters &aParameters);
Creates a new signing key parameters object copied from an existing object and puts a pointer to the new object onto the cleanup stack.
|
|
IMPORT_C void SetDSAParamsL(const CDSAParameters &aParams);
Sets the DSA parameters.
|