os/security/cryptomgmtlibs/cryptotokenfw/inc_interfaces/mctcertstore.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 /**
    20  @file 
    21  @publishedPartner
    22  @released
    23 */
    24 
    25 #ifndef __MCTCERTSTORE_H__
    26 #define __MCTCERTSTORE_H__
    27 
    28 #include <cctcertinfo.h>
    29 #include <ccertattributefilter.h>
    30 #include <mcertstore.h>
    31 
    32 /** The UID of read-only certificate store interfaces. */
    33 const TInt KInterfaceCertStore = 0x101F501B;
    34 
    35 /** The UID of filecertstore tokentype */
    36 const TInt KTokenTypeFileCertstore = 0x101F501A;
    37 
    38 /**
    39  * Defines the interface for a read-only certificate store token.
    40  * 
    41  * All the details are defined in MCertStore as they are shared by the unified
    42  * certificate store.
    43  * 
    44  * The class adds no extra member functions or data. 
    45  * 
    46  * @see MCertStore
    47  */
    48 class MCTCertStore : public MCertStore, public MCTTokenInterface
    49 	{
    50 	};
    51 
    52 
    53 #endif