diff -r 3255e7d5bd67 -r 989397f9511c cpsecplugins/cpadvancedsecplugin/inc/advsecsettingssecuritymodule_symbian.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cpsecplugins/cpadvancedsecplugin/inc/advsecsettingssecuritymodule_symbian.h Thu Oct 14 13:56:11 2010 +0300 @@ -0,0 +1,50 @@ +/* +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0"" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Symbian specific container class for a security module +* +*/ + +#ifndef ADVSECSETTINGSSECURITYMODULE_SYMBIAN_H +#define ADVSECSETTINGSSECURITYMODULE_SYMBIAN_H + +#include // CBase +#include // RMPointerArray + +class CCTKeyInfo; +class MCTKeyStore; +class MCTAuthenticationObject; + + +/** + * Symbian specific container class for a security module. + */ +class CAdvSecSettingsSecurityModuleSymbian : public CBase +{ +public: // constructor and destructor + CAdvSecSettingsSecurityModuleSymbian(MCTKeyStore &aProtectedKeyStore); + ~CAdvSecSettingsSecurityModuleSymbian(); + +public: // new functions + const TDesC &Label() const; + TBool IsDeletable() const; + TBool IsSigningPinSupported() const; + RMPointerArray &KeyInfoArray(); + +private: // data + MCTKeyStore &iProtectedKeyStore; + RMPointerArray iKeyInfoArray; + RMPointerArray iAuthenticationObjects; +}; + +#endif // ADVSECSETTINGSSECURITYMODULE_SYMBIAN_H