CPKIXValidationResultBase Class Reference

class CPKIXValidationResultBase : public CBase

Base class for CPKIXValidationResult.

Inherits from

  • CPKIXValidationResultBase

Constructor & Destructor Documentation

CPKIXValidationResultBase()

IMPORT_CCPKIXValidationResultBase()[protected]

~CPKIXValidationResultBase()

IMPORT_C~CPKIXValidationResultBase()

The destructor.

Frees all resources owned by the object.

Member Functions Documentation

AppendCertificateValidationObjectL(const CCertificateValidationWarnings &)

IMPORT_C voidAppendCertificateValidationObjectL(const CCertificateValidationWarnings &aCertWarning)

Adds a certificate warning to the validation result.

Parameters

const CCertificateValidationWarnings & aCertWarningThe warning to be added.

AppendCriticalExtensionWarningL(TDesC &)

IMPORT_C voidAppendCriticalExtensionWarningL(TDesC &aCriticalExt)

Adds a critical extension OID warning.

Parameters

TDesC & aCriticalExtThe critical extension OID to be added.

AppendPolicyL(CX509CertPolicyInfo &)

voidAppendPolicyL(CX509CertPolicyInfo &aPolicy)

Adds a policy to the validation result.

Parameters

CX509CertPolicyInfo & aPolicyThe policy to be added.

AppendWarningL(TValidationStatus)

voidAppendWarningL(TValidationStatusaWarning)

Adds a warning to the validation result.

Parameters

TValidationStatus aWarningThe warning to be added.

ConstructL()

IMPORT_C voidConstructL()[protected]

Error()

IMPORT_C const TValidationStatusError()const

Gets the error status of the operation.

Errors are considered fatal, i.e. validation has failed.

ExternalizeL(RWriteStream &)

IMPORT_C voidExternalizeL(RWriteStream &aStream)const

Externalises an object of this class to a write stream.

The presence of this function means that the standard templated operator<<() can be used to externalise objects of this class.

Parameters

RWriteStream & aStreamStream to which the object should be externalised.

InternalizeL(RReadStream &)

IMPORT_C voidInternalizeL(RReadStream &aStream)

Internalises an object of this class from a read stream.

The presence of this function means that the standard templated operator>>() can be used to internalise objects of this class.

Note that this function has assignment semantics: it replaces the old value of the object with a new value read from the read stream.

Parameters

RReadStream & aStreamStream from which the object should be internalised.

NewL()

IMPORT_C CPKIXValidationResultBase *NewL()[static]

Creates a new PKIX Validation Result object.

NewL(RReadStream &)

IMPORT_C CPKIXValidationResultBase *NewL(RReadStream &aStream)[static]

Creates a new PKIX Validation Result object from a stream.

Parameters

RReadStream & aStream

NewLC()

IMPORT_C CPKIXValidationResultBase *NewLC()[static]

Creates a new PKIX Validation Result object, and puts a pointer to it onto the cleanup stack.

NewLC(RReadStream &)

IMPORT_C CPKIXValidationResultBase *NewLC(RReadStream &aStream)[static]

Creates a new PKIX Validation Result object from a stream, and puts a pointer to it onto the cleanup stack.

Parameters

RReadStream & aStream

Policies()

IMPORT_C const CArrayPtrFlat< CX509CertPolicyInfo > &Policies()const

Gets a list of all the certificate policies which have been accepted implicitly in the course of validation.

RemovePolicies()

voidRemovePolicies()

Removes all policies from the validation result.

It is used by the validation process to remove policies it has added when the computation cannot complete because of environmental conditions such as out of memory, file access failures, etc..

Reset()

voidReset()

Resets the validation result object to its default values.

SetError(const TValidationError, const TInt)

voidSetError(const TValidationErroraError,
const TIntaCert
)

Sets the error status.

Parameters

const TValidationError aErrorThe error type that occurred when validating the certificate chain.
const TInt aCertThe index number identifying the certificate that gave rise to the error.

SetErrorAndLeaveL(const TValidationError, const TInt)

voidSetErrorAndLeaveL(const TValidationErroraError,
const TIntaCert
)

Sets the error status, and then leaves.

The function uses SetError() to set the error status.

Parameters

const TValidationError aErrorThe error type that occurred when validating the certificate chain.
const TInt aCertThe index number identifying the certificate that gave rise to the error.

ValidationWarnings()

IMPORT_C const RPointerArray< CCertificateValidationWarnings > &ValidationWarnings()const

Returns a list of critical extensions encountered and warnings generated by certificates during chain validation.

Warnings()

IMPORT_C const CArrayFixFlat< TValidationStatus > &Warnings()const

Gets a list of warnings generated.

The warnings may or may not be fatal, depending on the context, which the client is expected to provide.

Member Data Documentation

RPointerArray< CCertificateValidationWarnings > iCertWarnings

RPointerArray< CCertificateValidationWarnings >iCertWarnings[private]

TValidationStatus iError

TValidationStatus iError[private]

CArrayPtrFlat< CX509CertPolicyInfo > * iPolicies

CArrayPtrFlat< CX509CertPolicyInfo > *iPolicies[private]

CArrayFixFlat< TValidationStatus > * iWarnings

CArrayFixFlat< TValidationStatus > *iWarnings[private]