#include <mcertstore.h>
| class MCertStore |
| Public Member Functions | |
|---|---|
| pure virtual void | Applications(const CCTCertInfo &, RArray< TUid > &, TRequestStatus &) |
| pure virtual void | CancelApplications() |
| pure virtual void | CancelGetCert() |
| pure virtual void | CancelIsApplicable() |
| pure virtual void | CancelList() |
| pure virtual void | CancelRetrieve() |
| pure virtual void | CancelTrusted() |
| pure virtual void | GetCert(CCTCertInfo *&, const TCTTokenObjectHandle &, TRequestStatus &) |
| pure virtual void | IsApplicable(const CCTCertInfo &, TUid, TBool &, TRequestStatus &) |
| pure virtual void | List(RMPointerArray< CCTCertInfo > &, const CCertAttributeFilter &, TRequestStatus &) |
| pure virtual void | Retrieve(const CCTCertInfo &, TDes8 &, TRequestStatus &) |
| pure virtual void | Trusted(const CCTCertInfo &, TBool &, TRequestStatus &) |
Defines the interface for a read-only certificate store.
This documentation describes the security policy that must be enforced by implementations of the interface.
| void | Applications | ( | const CCTCertInfo & | aCertInfo, |
| RArray< TUid > & | aAplications, | |||
| TRequestStatus & | aStatus | |||
| ) | [pure virtual] | |||
Querying the applications of a certificate. Get the list of the applications associcated with certificate.
Applications are represented by UIDs. Examples would be Software Install, TLS, WTLS, WMLScript, SignText, etc..
| Parameters | |
|---|---|
| aCertInfo | The certificate to return applications for. |
| aAplications | An array to save the applications in. |
| aStatus | The request status object; contains the result of the Applications() request when complete. Set to KErrCancel if any outstanding request is cancelled. |
| void | CancelApplications | ( | ) | [pure virtual] |
Cancels an ongoing Applications() operation.
| void | CancelIsApplicable | ( | ) | [pure virtual] |
Cancels an ongoing IsApplicable() operation.
| void | GetCert | ( | CCTCertInfo *& | aCertInfo, |
| const TCTTokenObjectHandle & | aHandle, | |||
| TRequestStatus & | aStatus | |||
| ) | [pure virtual] | |||
Getting a certificate given a handle. Get a certificate given its handle.
| Parameters | |
|---|---|
| aCertInfo | The returned certificate. |
| aHandle | The handle of the certificate to return. |
| aStatus | The request status object; contains the result of the GetCert() request when complete. Set to KErrCancel if any outstanding request is cancelled. |
| void | IsApplicable | ( | const CCTCertInfo & | aCertInfo, |
| TUid | aApplication, | |||
| TBool & | aIsApplicable, | |||
| TRequestStatus & | aStatus | |||
| ) | [pure virtual] | |||
Tests if a certificate is applicable to a particular application.
| Parameters | |
|---|---|
| aCertInfo | The certificate in question. |
| aApplication | The application. |
| aIsApplicable | Set to ETrue or EFalse by the function to return the result. |
| aStatus | The request status object; contains the result of the IsApplicable() request when complete. Set to KErrCancel if any outstanding request is cancelled. |
| void | List | ( | RMPointerArray< CCTCertInfo > & | aCerts, |
| const CCertAttributeFilter & | aFilter, | |||
| TRequestStatus & | aStatus | |||
| ) | [pure virtual] | |||
Listing Certificates Get a list of all certificates that satisfy the supplied filter.
This is an async function; all errors are reported by completing aStatus with the error value, and it can be cancelled with CancelList().
| Parameters | |
|---|---|
| aCerts | An array into which the returned certificates are placed. |
| aFilter | A filter to select which certificates should be included. |
| aStatus | A request status that will be completed when the operation completes. |
| void | Retrieve | ( | const CCTCertInfo & | aCertInfo, |
| TDes8 & | aEncodedCert, | |||
| TRequestStatus & | aStatus | |||
| ) | [pure virtual] | |||
Retrieving the actual certificate Retrieves the actual data of the certificate.
| Parameters | |
|---|---|
| aCertInfo | The certificate to retrieve. |
| aEncodedCert | A buffer to put the certificate in. It must be big enough; the size is stored in aCertInfo. |
| aStatus | The request status object; contains the result of the Retrieve()request when complete. Set to KErrCancel if any outstanding request is cancelled. |
| Leave Codes | |
|---|---|
| KErrPermissionDenied | If called for a user certificate when the caller doesn't have the ReadUserData capability. |
| Capability | |
|---|---|
| ReadUserData | This requires the ReadUserData capability when applied to user certificates, as these may contain sensitive user data. |
| void | Trusted | ( | const CCTCertInfo & | aCertInfo, |
| TBool & | aTrusted, | |||
| TRequestStatus & | aStatus | |||
| ) | [pure virtual] | |||
Trust querying Tests whether a certificate is trusted.
Trust is only meaningful for CA certificates where it means that the certificate can be used as a trust root for the purposes of certificate validation.
| Parameters | |
|---|---|
| aCertInfo | The certificate we are interested in. |
| aTrusted | Used to return the trust status. |
| aStatus | The request status object; contains the result of the Trusted() request when complete. Set to KErrCancel if any outstanding request is cancelled. |