class CPKIXCertsFromStore : public CActive |
This class is used to retrieve the certificates from a store It doesn't work with client base trust.
Public Member Functions | |
---|---|
~CPKIXCertsFromStore() | |
void | CancelCandidates() |
void | CandidatesL(const CX509Certificate &, RPointerArray< CX509Certificate > &, TRequestStatus &) |
void | DoCancel() |
void | Initialize(TRequestStatus &) |
CPKIXCertsFromStore * | NewL(MCertStore &) |
CPKIXCertsFromStore * | NewL(MCertStore &, TUid) |
CPKIXCertsFromStore * | NewLC(MCertStore &) |
CPKIXCertsFromStore * | NewLC(MCertStore &, TUid) |
void | Release() |
TInt | RunError(TInt) |
void | RunL() |
Private Member Functions | |
---|---|
CPKIXCertsFromStore(MCertStore &) | |
CPKIXCertsFromStore(MCertStore &, TUid) | |
void | ConstructL() |
void | ConstructL(TUid) |
void | HandleEAddCandidateL() |
void | HandleECheckTrusted() |
void | HandleEGetCertificateL() |
TBool | IsDuplicateL(const CX509Certificate &) |
Private Member Enumerations | |
---|---|
enum | TState { EIdle = 0, EInitialize, ECheckTrusted, EGetCertificate, EAddCandidate, EEnd } |
Inherited Enumerations | |
---|---|
CActive:TPriority |
Inherited Attributes | |
---|---|
CActive::iStatus |
CPKIXCertsFromStore | ( | MCertStore & | aCertStore | ) | [private] |
MCertStore & aCertStore |
CPKIXCertsFromStore | ( | MCertStore & | aCertStore, |
TUid | aClient | ||
) | [private] |
MCertStore & aCertStore | |
TUid aClient |
void | CandidatesL | ( | const CX509Certificate & | aSubject, |
RPointerArray< CX509Certificate > & | aCandidates, | |||
TRequestStatus & | aStatus | |||
) | [virtual] |
This function returns a list of CA certificates that authenticate the aSubject certificate.
const CX509Certificate & aSubject | |
RPointerArray< CX509Certificate > & aCandidates | On return, this array contains the list of CA certificates that can possibly be used to authenticate aSubject. The array owns the elements and must take care of deleting them. |
TRequestStatus & aStatus |
void | DoCancel | ( | ) | [virtual] |
Implements cancellation of an outstanding request.
This function is called as part of the active object's Cancel().
It must call the appropriate cancel function offered by the active object's asynchronous service provider. The asynchronous service provider's cancel is expected to act immediately.
DoCancel() must not wait for event completion; this is handled by Cancel().
void | Initialize | ( | TRequestStatus & | aStatus | ) |
This function does the actual listing of certificates based on the filter created. It must be called after construction.
TRequestStatus & aStatus | Standard parameter for asynchronous calling convention. |
TBool | IsDuplicateL | ( | const CX509Certificate & | aCertificate | ) | [private] |
const CX509Certificate & aCertificate |
CPKIXCertsFromStore * | NewL | ( | MCertStore & | aCertStore | ) | [static] |
Constructs a new CPKIXCertsFromStore instance and adds it to the active scheduler Initialize must be called after this function
MCertStore & aCertStore |
CPKIXCertsFromStore * | NewL | ( | MCertStore & | aCertStore, |
TUid | aClient | |||
) | [static] |
Constructs a new CPKIXCertsFromStore instance and adds it to the active scheduler Initialize must be called after this function
MCertStore & aCertStore | |
TUid aClient | The UID for which the certificates are to be retrieved from the cert store, This UID is also passed to the filter for retrieving the certificates specific to this client UID. |
CPKIXCertsFromStore * | NewLC | ( | MCertStore & | aCertStore | ) | [static] |
MCertStore & aCertStore |
CPKIXCertsFromStore * | NewLC | ( | MCertStore & | aCertStore, |
TUid | aClient | |||
) | [static] |
MCertStore & aCertStore | |
TUid aClient |
void | RunL | ( | ) | [virtual] |
Handles an active object's request completion event.
A derived class must provide an implementation to handle the completed request. If appropriate, it may issue another request.
The function is called by the active scheduler when a request completion event occurs, i.e. after the active scheduler's WaitForAnyRequest() function completes.
Before calling this active object's RunL() function, the active scheduler has:
1. decided that this is the highest priority active object with a completed request
2. marked this active object's request as complete (i.e. the request is no longer outstanding)
RunL() runs under a trap harness in the active scheduler. If it leaves, then the active scheduler calls RunError() to handle the leave.
Note that once the active scheduler's Start() function has been called, all user code is run under one of the program's active object's RunL() or RunError() functions.
CActiveScheduler::Start CActiveScheduler::Error CActiveScheduler::WaitForAnyRequest TRAPD
RPointerArray< CX509Certificate > * | iCandidates | [private] |
We don't own this
RMPointerArray< CCTCertInfo > | iCertInfos | [private] |
Used when listing certificates (filtered but not on trust).
TBool | iIsTrusted | [private] |
Applies to certificate at iEntriesIndex - reflects trust setting
TRequestStatus * | iOriginalRequestStatus | [private] |
The TRequestStatus that must be updated when the operation requested by a user of this class has been completed
const CX500DistinguishedName * | iRootName | [private] |
iRootName is used for CandidateL
TState | iState | [private] |
The state used to know what must be done when executing RunL().
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.