#include <X509gn.h>
Link against:
x509.lib
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
CBase
-
Base class for all classes to be instantiated on the heap.
CX509GeneralName
- Defines a general name.
Members
Defined in CX509GeneralName
:
Inherited from CBase
:
Construction and destruction
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
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
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
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
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
Return value
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
Return value
IMPORT_C ~CX509GeneralName();
Description
Destructor.
Frees all resources owned by the object, prior to its destruction.
IMPORT_C TGNType Tag() const;
Description
Gets the type tag.
Return value
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
Return value