equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006-2009 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 the License "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: |
|
15 * Interface for the CCertificateRequestGenerator class |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 /** |
|
21 @file |
|
22 @internalComponent |
|
23 */ |
|
24 |
|
25 #if !defined(AFX_CERTIFICATEREQUESTGENERATOR_H__1F570325_DFDF_4630_8A01_F04030BACCF1__INCLUDED_) |
|
26 #define AFX_CERTIFICATEREQUESTGENERATOR_H__1F570325_DFDF_4630_8A01_F04030BACCF1__INCLUDED_ |
|
27 |
|
28 #if _MSC_VER > 1000 |
|
29 #pragma once |
|
30 #endif // _MSC_VER > 1000 |
|
31 |
|
32 #include "CertificateGenerator.h" |
|
33 |
|
34 class CCertificateRequestGenerator : public CCertificateGenerator |
|
35 { |
|
36 public: |
|
37 int Generate(); |
|
38 void SetRequestName(_TCHAR* aStr); |
|
39 CCertificateRequestGenerator(); |
|
40 CCertificateRequestGenerator(_TCHAR* aDnPtr); |
|
41 virtual ~CCertificateRequestGenerator(); |
|
42 |
|
43 private: |
|
44 _TCHAR m_RequestFile[MAXLEN]; |
|
45 }; |
|
46 |
|
47 #endif // !defined(AFX_CERTIFICATEREQUESTGENERATOR_H__1F570325_DFDF_4630_8A01_F04030BACCF1__INCLUDED_) |