sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 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 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __CERTMAN_IBY__
|
sl@0
|
19 |
#define __CERTMAN_IBY__
|
sl@0
|
20 |
|
sl@0
|
21 |
// depends upon lower level crypto libraries
|
sl@0
|
22 |
#include <crypto.iby>
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifdef __INCLUDE_SW_KEYSTORE__
|
sl@0
|
25 |
#include "filetokens.iby"
|
sl@0
|
26 |
#include "asnpkcs.iby"
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
#include "secutil.iby"
|
sl@0
|
30 |
#include "sectcbutil.iby"
|
sl@0
|
31 |
#include "secsettings.iby"
|
sl@0
|
32 |
#include "ocspcenrep.iby"
|
sl@0
|
33 |
|
sl@0
|
34 |
REM Certificate management libraries
|
sl@0
|
35 |
|
sl@0
|
36 |
file=ABI_DIR\BUILD_DIR\asn1.dll System\Libs\asn1.dll
|
sl@0
|
37 |
file=ABI_DIR\BUILD_DIR\certstore.dll System\Libs\CertStore.dll
|
sl@0
|
38 |
file=ABI_DIR\BUILD_DIR\crypto.dll System\Libs\crypto.dll
|
sl@0
|
39 |
file=ABI_DIR\BUILD_DIR\pkixcert.dll System\Libs\PKIXCert.dll
|
sl@0
|
40 |
file=ABI_DIR\BUILD_DIR\x500.dll System\Libs\x500.dll
|
sl@0
|
41 |
file=ABI_DIR\BUILD_DIR\x509.dll System\Libs\x509.dll
|
sl@0
|
42 |
file=ABI_DIR\BUILD_DIR\wtlscert.dll System\Libs\wtlscert.dll
|
sl@0
|
43 |
file=ABI_DIR\BUILD_DIR\ctframework.dll System\Libs\ctframework.dll
|
sl@0
|
44 |
|
sl@0
|
45 |
file=ABI_DIR\BUILD_DIR\pkixcertbase.dll System\Libs\PKIXCertBase.dll
|
sl@0
|
46 |
file=ABI_DIR\BUILD_DIR\ctfinder.dll System\Libs\ctfinder.dll
|
sl@0
|
47 |
file=ABI_DIR\BUILD_DIR\swicertstore.dll System\Libs\swicertstore.dll
|
sl@0
|
48 |
#ifndef __SECURITY_TEST_ROM__
|
sl@0
|
49 |
ECOM_PLUGIN(swicertstoreplugin.dll, 1020430C.rsc)
|
sl@0
|
50 |
#endif
|
sl@0
|
51 |
|
sl@0
|
52 |
|
sl@0
|
53 |
REM Add certificate recogniser
|
sl@0
|
54 |
ECOM_PLUGIN(reccert.dll, 000047EB.rsc)
|
sl@0
|
55 |
ECOM_PLUGIN(pkcs8recog.dll, 1020361A.rsc)
|
sl@0
|
56 |
ECOM_PLUGIN(pkcs12recog.dll, 2000151f.rsc)
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
REM Certificate management libraries, extra DLL for Cedar builds
|
sl@0
|
60 |
file=ABI_DIR\BUILD_DIR\pkcs10.dll System\Libs\pkcs10.dll
|
sl@0
|
61 |
|
sl@0
|
62 |
#ifdef AGGREGATE_CERTSTORE
|
sl@0
|
63 |
patchdata swicertstore.dll@KAggregateCertStore 0x01
|
sl@0
|
64 |
#endif
|
sl@0
|
65 |
|
sl@0
|
66 |
#endif
|