Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <X509gn.h>
Link against: x509.lib

Class CX509GeneralName

class CX509GeneralName : public CBase;

Description

Defines a general name.

The class contains a tag and a name whose form depends on the value of that tag.

When a General Name is included as part of a Name Constraints Extension, the values need not be complete names but may be simply subtrees.

For example, 'symbian.com' instead of [email protected]'. Both names are valid subtrees but only the second is a valid RFC822 name.

Derivation

Members

Defined in CX509GeneralName:

Inherited from CBase:


Construction and destruction


NewL(const TDesC8 &)

IMPORT_C static CX509GeneralName* NewL(const TDesC8 &aBinaryData);

Description

Creates a new general name object from the specified buffer containing the binary coded representation.

Parameters

const TDesC8 &aBinaryData

The encoded binary representation.

Return value

CX509GeneralName *

The new general name object.


NewLC(const TDesC8 &)

IMPORT_C static CX509GeneralName* NewLC(const TDesC8 &aBinaryData);

Description

Creates a new general name object from the specified buffer containing the binary coded representation, and puts a pointer to it onto the cleanup stack.

Initialises the object from its encoded binary form into an internal representation.

Parameters

const TDesC8 &aBinaryData

The encoded binary representation.

Return value

CX509GeneralName *

The new general name object.


NewL(const TDesC8 &,TInt &)

IMPORT_C static CX509GeneralName* NewL(const TDesC8 &aBinaryData, TInt &aPos);

Description

Creates a new general name object from the specified buffer containing the binary coded representation,starting at the specified offset.

Parameters

const TDesC8 &aBinaryData

The encoded binary representation.

TInt &aPos

The offset position from which to start decoding.

Return value

CX509GeneralName *

The new general name object.


NewLC(const TDesC8 &,TInt &)

IMPORT_C static CX509GeneralName* NewLC(const TDesC8 &aBinaryData, TInt &aPos);

Description

Creates a new general name object from the specified buffer containing the binary coded representation, starting at the specified offset, and puts a pointer to it onto the cleanup stack.

Initialises the object from its encoded binary form into an internal representation.

Parameters

const TDesC8 &aBinaryData

The encoded binary representation.

TInt &aPos

The offset position from which to start decoding.

Return value

CX509GeneralName *

The new general name object.


NewL(const CX509GeneralName &)

IMPORT_C static CX509GeneralName* NewL(const CX509GeneralName &aName);

Description

Creates a new general name object from an existing object.

This is equivalent to a copy constructor.

Parameters

const CX509GeneralName &aName

The general name object to be copied.

Return value

CX509GeneralName *

The new general name object.


NewLC(const CX509GeneralName &)

IMPORT_C static CX509GeneralName* NewLC(const CX509GeneralName &aName);

Description

Creates a new general name object from an existing object, and puts a pointer to it onto the cleanup stack.

This is equivalent to a copy constructor.

Parameters

const CX509GeneralName &aName

The general name object to be copied.

Return value

CX509GeneralName *

The new general name object.


~CX509GeneralName()

IMPORT_C ~CX509GeneralName();

Description

Destructor.

Frees all resources owned by the object, prior to its destruction.

[Top]


Member functions


Tag()const

IMPORT_C TGNType Tag() const;

Description

Gets the type tag.

Return value

TGNType

The type tag.


Data()const

IMPORT_C TPtrC8 Data() const;

Description

Gets the name.

Return value

TPtrC8

A pointer descriptor representing the name.


ExactMatch(const CX509GeneralName &)const

IMPORT_C TBool ExactMatch(const CX509GeneralName &aName) const;

Description

Dummy Function which always returns EFalse.

Parameters

const CX509GeneralName &aName

The general name object to be copied.

Return value

TBool

EFalse.