sl@0
|
1 |
/*
|
sl@0
|
2 |
Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
3 |
|
sl@0
|
4 |
Redistribution and use in source and binary forms, with or without
|
sl@0
|
5 |
modification, are permitted provided that the following conditions are met:
|
sl@0
|
6 |
|
sl@0
|
7 |
* Redistributions of source code must retain the above copyright notice, this
|
sl@0
|
8 |
list of conditions and the following disclaimer.
|
sl@0
|
9 |
* Redistributions in binary form must reproduce the above copyright notice,
|
sl@0
|
10 |
this list of conditions and the following disclaimer in the documentation
|
sl@0
|
11 |
and/or other materials provided with the distribution.
|
sl@0
|
12 |
* Neither the name of Nokia Corporation nor the names of its contributors
|
sl@0
|
13 |
may be used to endorse or promote products derived from this software
|
sl@0
|
14 |
without specific prior written permission.
|
sl@0
|
15 |
|
sl@0
|
16 |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
sl@0
|
17 |
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
18 |
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
sl@0
|
19 |
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
sl@0
|
20 |
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
21 |
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
sl@0
|
22 |
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
sl@0
|
23 |
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
sl@0
|
24 |
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
sl@0
|
25 |
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
26 |
|
sl@0
|
27 |
Description:
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
#ifndef CERT_RETRIEVER_H
|
sl@0
|
32 |
#define CERT_RETRIEVER_H
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef __cplusplus
|
sl@0
|
35 |
|
sl@0
|
36 |
#include <unifiedcertstore.h>
|
sl@0
|
37 |
#include <mctwritablecertstore.h>
|
sl@0
|
38 |
#include <x509cert.h>
|
sl@0
|
39 |
#include <signed.h>
|
sl@0
|
40 |
#include <openssl/x509.h>
|
sl@0
|
41 |
|
sl@0
|
42 |
#endif
|
sl@0
|
43 |
|
sl@0
|
44 |
#define ISSUER_NAME 0
|
sl@0
|
45 |
#define SUBJECT_NAME 1
|
sl@0
|
46 |
|
sl@0
|
47 |
// CONSTANT
|
sl@0
|
48 |
const TInt KCertMaxBuffer = 32;
|
sl@0
|
49 |
const TInt KMaxNameLength = 256;
|
sl@0
|
50 |
const TInt KMaxCertLength = 5120;
|
sl@0
|
51 |
|
sl@0
|
52 |
#ifdef __cplusplus
|
sl@0
|
53 |
extern "C"
|
sl@0
|
54 |
{
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
int X509_add_symbian_certsL(X509_STORE * store);
|
sl@0
|
57 |
#ifdef __cplusplus
|
sl@0
|
58 |
}
|
sl@0
|
59 |
#endif
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
#ifdef __cplusplus
|
sl@0
|
63 |
|
sl@0
|
64 |
NONSHARABLE_CLASS (CCertRetriever) : public CActive
|
sl@0
|
65 |
{
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
static CCertRetriever* NewLC(
|
sl@0
|
68 |
X509_STORE* aStore,
|
sl@0
|
69 |
TRequestStatus& aStatus,
|
sl@0
|
70 |
const CActiveScheduler* aActiveScheduler);
|
sl@0
|
71 |
static CCertRetriever* NewL(
|
sl@0
|
72 |
X509_STORE* aStore,
|
sl@0
|
73 |
TRequestStatus& aStatus,
|
sl@0
|
74 |
const CActiveScheduler* aActiveScheduler);
|
sl@0
|
75 |
~CCertRetriever();
|
sl@0
|
76 |
void RunL();
|
sl@0
|
77 |
void DoCancel();
|
sl@0
|
78 |
TInt RunError(TInt aError);
|
sl@0
|
79 |
void RetriveCertificateL();
|
sl@0
|
80 |
CActiveSchedulerWait* activeSchedulerwait; //For nested wait loop;
|
sl@0
|
81 |
TBool OwnScheduler;
|
sl@0
|
82 |
|
sl@0
|
83 |
private:
|
sl@0
|
84 |
CCertRetriever(X509_STORE* aStore,
|
sl@0
|
85 |
TRequestStatus& aStatus,
|
sl@0
|
86 |
const CActiveScheduler* aActiveScheduler);
|
sl@0
|
87 |
void ConstructL();
|
sl@0
|
88 |
|
sl@0
|
89 |
void OpenUnifiedCertStoreL();
|
sl@0
|
90 |
void ListCertsL();
|
sl@0
|
91 |
void AppendCertsL();
|
sl@0
|
92 |
void ProcessCertsL();
|
sl@0
|
93 |
|
sl@0
|
94 |
private:
|
sl@0
|
95 |
X509_STORE* iStore;
|
sl@0
|
96 |
TRequestStatus& iFinStatus;
|
sl@0
|
97 |
const CActiveScheduler* iActiveScheduler;
|
sl@0
|
98 |
|
sl@0
|
99 |
RFs iFs;
|
sl@0
|
100 |
CUnifiedCertStore * iCertStore;
|
sl@0
|
101 |
CCertAttributeFilter * iCertFilter;
|
sl@0
|
102 |
RMPointerArray< CCTCertInfo > iCerts;
|
sl@0
|
103 |
|
sl@0
|
104 |
enum TStateLists
|
sl@0
|
105 |
{
|
sl@0
|
106 |
EInitializeCertStore,
|
sl@0
|
107 |
EListCerts,
|
sl@0
|
108 |
EAppendCerts,
|
sl@0
|
109 |
ENoCerts,
|
sl@0
|
110 |
EDone
|
sl@0
|
111 |
};
|
sl@0
|
112 |
|
sl@0
|
113 |
TStateLists iState;
|
sl@0
|
114 |
|
sl@0
|
115 |
TInt iCertCount;
|
sl@0
|
116 |
TPtr8 iCertPtr ;
|
sl@0
|
117 |
HBufC8 *iBuf;
|
sl@0
|
118 |
};
|
sl@0
|
119 |
|
sl@0
|
120 |
|
sl@0
|
121 |
#endif
|
sl@0
|
122 |
|
sl@0
|
123 |
#endif //CERT_RETRIEVER_H
|