This section explains how to retrieve keystore implementations.
Keystores can be used in manager mode or user mode. In manager mode, modifications to an existing keystore can be performed through the MCTKeyStoreManager interface. In user mode, a keystore can be viewed using the MCTKeyStore interface.
The following steps explain the process of retrieving keystores:
Returns a keystore, which can be used to perform operations.
The following code snippet shows how to retrieve keystores in manager mode.
//Create a file system session object RFs iFs; CleanupClosePushL(&iFs); ... //Initialise the keystore and member functions CUnifiedKeyStore* keyStore = CUnifiedKeyStore::NewL(fs); keyStore->Initialize(iStatus); //iStatus is a TRequestStatus object ... //Retrieve the keystore present at the specified index //If the keystore index is invalid //or the specified keystore cannot be opened in manager mode //then the manager object is NULL MCTKeyStoreManager& manager = keyStore->KeyStoreManager(0); //Clean up CleanupStack::PopAndDestroy(); // iFs