vpnengine/pkiservice/inc/pkiserviceconstants.h
changeset 0 33413c0669b9
equal deleted inserted replaced
-1:000000000000 0:33413c0669b9
       
     1 /*
       
     2 * Copyright (c) 2008 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 "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:   Constants used in PKIService module
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef PKISERVICECONSTANTS_H
       
    21 #define PKISERVICECONSTANTS_H
       
    22 
       
    23 const TInt STORETYPE_DEVICE_CERT_ID = 0x101FB668;
       
    24 const TInt STORETYPE_DEVICE_KEY_ID = 0x101FB66A;
       
    25 const TInt STORETYPE_USER_CERT_ID = 0x101F501A;
       
    26 const TInt STORETYPE_USER_KEY_ID = 0x101F7333;
       
    27 
       
    28 const TInt STORETYPE_ANY_KEY_ID = 0x0; //Not a real uid. Just used internally
       
    29 
       
    30 // Constants for cert store types
       
    31 _LIT(KUserCertStore, "Software certificate store");
       
    32 _LIT(KDeviceCertStore, "device certstore");
       
    33 
       
    34 
       
    35 
       
    36 #endif //PKISERVICECONSTANTS_H
       
    37