equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-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: Boot time integrity check of binaries. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <platform_paths.hrh> |
|
20 |
|
21 TARGET IntegrityCheck.exe |
|
22 TARGETTYPE exe |
|
23 UID 0x0 0x101FB65F |
|
24 |
|
25 CAPABILITY TCB ReadUserData AllFiles ReadDeviceData |
|
26 SECUREID 0x101FB65F |
|
27 VENDORID VID_DEFAULT |
|
28 |
|
29 SOURCEPATH ../src |
|
30 SOURCE IntegrityCheck.cpp |
|
31 SOURCE InfoServerClient.cpp |
|
32 |
|
33 USERINCLUDE ../inc |
|
34 |
|
35 APP_LAYER_SYSTEMINCLUDE |
|
36 |
|
37 LIBRARY euser.lib |
|
38 LIBRARY efsrv.lib |
|
39 LIBRARY bafl.lib // for path search |
|
40 LIBRARY estor.lib // for TStreamId |
|
41 LIBRARY x500.lib // for ExactMatchL etc. |
|
42 LIBRARY x509.lib // for x509 certs |
|
43 LIBRARY crypto.lib // for VerifySignaturL etc. |
|
44 LIBRARY sisregistryclient.lib // Sis registery operations |
|
45 LIBRARY hash.lib // for SHA1 hash |
|
46 LIBRARY CTFramework.lib // for TCertLabel, CCTCertInfo, |
|
47 // TCapabilitySet |
|
48 LIBRARY IntegrityCheckClient.lib // BTIC Server client |
|
49 |
|
50 SMPSAFE |
|
51 |
|
52 |
|
53 |