|
||
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()
Creates a new signing key parameters object.NewL(const CSigningKeyParameters &)
Creates a new signing key parameters object copied from an existing object.NewLC()
Creates a new signing key parameters object and puts a pointer to the new object...NewLC(const CSigningKeyParameters &)
Creates a new signing key parameters object copied from an existing object and p...SetDSAParamsL(const CDSAParameters &)
Sets the DSA parameters.~CSigningKeyParameters()
Destructor.Inherited from CBase
:
Delete(CBase *)
Deletes the specified object.Extension_(TUint,TAny *&,TAny *)
Extension function operator new(TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TAny *)
Initialises the object to binary zeroes.operator new(TUint,TLeave)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TLeave,TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TUint)
Allocates the object from the heap and then initialises its contents to binary z...IMPORT_C static CSigningKeyParameters* NewL();
Creates a new signing key parameters object.
|
IMPORT_C static CSigningKeyParameters* NewLC();
Creates a new signing key parameters object and puts a pointer to the new object onto the cleanup stack.
|
IMPORT_C static CSigningKeyParameters* NewL(const CSigningKeyParameters &aParameters);
Creates a new signing key parameters object copied from an existing object.
|
|
IMPORT_C static 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.
|