Symbian
Symbian OS Library

SYMBIAN OS V9.3

[Index] [Spacer] [Previous] [Next]



Location: signed.h
Link against: crypto.lib

Class CSigningKeyParameters

class CSigningKeyParameters : public CBase;

Description

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.

Derivation

Members

Defined in CSigningKeyParameters:
NewL(), NewL(), NewLC(), NewLC(), SetDSAParamsL(), ~CSigningKeyParameters()

Inherited from CBase:
Delete(), Extension_(), operator new()


Construction and destruction


NewL()

static IMPORT_C CSigningKeyParameters *NewL();

Description

Creates a new signing key parameters object.

Return value

CSigningKeyParameters *

A pointer to the new signing key parameters object.


NewLC()

static IMPORT_C CSigningKeyParameters *NewLC();

Description

Creates a new signing key parameters object and puts a pointer to the new object onto the cleanup stack.

Return value

CSigningKeyParameters *

A pointer to the new signing key parameters object.


NewL()

static IMPORT_C CSigningKeyParameters *NewL(const CSigningKeyParameters &aParameters);

Description

Creates a new signing key parameters object copied from an existing object.

Parameters

const CSigningKeyParameters &aParameters

The signing key parameters object to be copied.

Return value

CSigningKeyParameters *

A pointer to the new parameters object.


NewLC()

static IMPORT_C CSigningKeyParameters *NewLC(const CSigningKeyParameters &aParameters);

Description

Creates a new signing key parameters object copied from an existing object and puts a pointer to the new object onto the cleanup stack.

Parameters

const CSigningKeyParameters &aParameters

The signing key parameters object to be copied.

Return value

CSigningKeyParameters *

A pointer to the new signing key parameters object.


~CSigningKeyParameters()

IMPORT_C ~CSigningKeyParameters();

Description

Destructor.

Frees all resources owned by the object.

[Top]


Member functions


SetDSAParamsL()

IMPORT_C void SetDSAParamsL(const CDSAParameters &aParams);

Description

Sets the DSA parameters.

Parameters

const CDSAParameters &aParams

The DSA parameters.