|
||
class CPKIXValidationResult : public CPKIXValidationResultBase;
Stores the information regarding the results of a validation of a PKIX certificate chain.
CPKIXValidationResultBase
- No description.
CPKIXValidationResult
- Stores the information regarding the results of a validation of a PKIX certifica...
Defined in CPKIXValidationResult
:
Error()const
Gets the error status of the operation.NewL()
Creates a new PKIX Validation Result object.NewLC()
Creates a new PKIX Validation Result object, and puts a pointer to it onto the c...Policies()const
Gets a list of all the certificate policies which have been accepted implicitly ...ValidationWarnings()const
Returns a list of critical extensions encountered and warnings generated by cert...Warnings()const
Gets a list of warnings generated.~CPKIXValidationResult()
The destructor.IMPORT_C static CPKIXValidationResult* NewL();
Creates a new PKIX Validation Result object.
|
IMPORT_C static CPKIXValidationResult* NewLC();
Creates a new PKIX Validation Result object, and puts a pointer to it onto the cleanup stack.
|
IMPORT_C ~CPKIXValidationResult();
The destructor.
Frees all resources owned by the object.
IMPORT_C const TValidationStatus Error() const;
Gets the error status of the operation.
Errors are considered fatal, i.e. validation has failed.
|
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.
|
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.
|
IMPORT_C const RPointerArray< CCertificateValidationWarnings >& ValidationWarnings() const;
Returns a list of critical extensions encountered and warnings generated by certificates during chain validation. A CCertificateWarning object is returned for each certificate in the chain, even if no critical extensions or warnings were encountered. The array's data is in the same order as the certificate chain.
|