sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* filetokenspatchdata.h
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
This 8-bit variable is used in enablement of aggregation of multiple certstores
|
sl@0
|
24 |
present under filecertstore ROM drive private directory. It is used to override swicertstores's and filecertstore's
|
sl@0
|
25 |
default behaviour of only loading and reading from permanent certstore files 'swicertstore.dat and
|
sl@0
|
26 |
'cacerts.dat' & 'certclients.dat' respectively. Compile time value is 0 - default behaviour.
|
sl@0
|
27 |
When value is 1 - SWI certstore will aggregate all the certstore files present under
|
sl@0
|
28 |
ROM drive resource directory and gives an abstraction of a single ROM swicertstore. Also this
|
sl@0
|
29 |
will aggregate the highest version writable swicertstore under system drive resource directory
|
sl@0
|
30 |
as of higher priority to with the ROM composite swicertstore. Similarly, filecertstore will aggregate
|
sl@0
|
31 |
the multiple certstore files present under its ROM drive private directory and gives an abstraction of a single filecertstore.
|
sl@0
|
32 |
In emulator platform we have the default behaviour for both swicertstore and filecertstore.
|
sl@0
|
33 |
|
sl@0
|
34 |
This variable is changed at ROM build time using the patchdata obey keyword.
|
sl@0
|
35 |
See Symbian OS Developer Library documentation on how to patch DLL data exports.
|
sl@0
|
36 |
@file
|
sl@0
|
37 |
@publishedPartner
|
sl@0
|
38 |
@released
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
|
sl@0
|
41 |
IMPORT_C extern const TUint8 KAggregateCertStore;
|