|
|
|
Location:
x509gn.h
Link against: x509.lib
CX509GeneralName
Supported from 6.0
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 john.doe@symbian.com'. Both names are valid subtrees but only the second is a valid RFC822 name.
|
Defined in CX509GeneralName:
Data(), ExactMatch(), NewL(), NewL(), NewL(), NewLC(), NewLC(), NewLC(), Tag(), ~CX509GeneralName()
Inherited from CBase:
operator new()
static CX509GeneralName* NewL(const TDesC8& aBinaryData);
Creates a new general name object from the specified buffer containing the binary coded representation.
|
|
static CX509GeneralName* NewL(const TDesC8& aBinaryData, TInt& aPos);
Creates a new general name object from the specified buffer containing the binary coded representation,starting at the specified offset.
|
|
static CX509GeneralName* NewL(const CX509GeneralName& aName);
Creates a new general name object from an existing object.
This is equivalent to a copy constructor.
|
|
static CX509GeneralName* NewLC(const TDesC8& aBinaryData);
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.
Iinitialises the object from its encoded binary form into an internal representation.
|
|
static CX509GeneralName* NewLC(const CX509GeneralName& aName);
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.
|
|
static CX509GeneralName* NewLC(const TDesC8& aBinaryData, TInt& aPos);
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.
|
|
~CX509GeneralName();
Destructor.
Frees all resources owned by the object, prior to its destruction.
TPtrC8 Data() const;
Gets the name.
|
TBool ExactMatch(const CX509GeneralName& aName) const;
This function is not implemented and always returns false.