Fix the crash while installing of ServiceApp
[platform/framework/native/installer.git] / src / Manager / SignatureManager.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 /**
18  * @file SignatureManager.h
19  * @brief       This is the header file for the %SignatureManager class.
20  *
21  * This header file contains the declarations of the %SignatureManager class.
22  */
23 #ifndef _SIGNATURE_MANAGER_H_
24 #define _SIGNATURE_MANAGER_H_
25
26 #include <FSecCertX509CertificatePath.h>
27
28 #include "InstallationContext.h"
29 #include "SignatureHandler.h"
30
31 /**
32  * @class               SignatureManager
33  * @brief               This class represents the class of SignatureManager.
34  * @since               1.0
35  *
36  * This class represents the class of SignatureManager.
37  *
38  */
39
40 class SignatureManager
41 {
42 public:
43         SignatureManager(void);
44         virtual ~SignatureManager(void);
45
46         bool Construct(InstallationContext *pConext);
47         bool SetSignature();
48         bool AddCert();
49         bool VerifyChain();
50         //bool VerifySignature();
51
52 private:
53         SignatureManager(const SignatureManager& value);
54         SignatureManager& operator =(const SignatureManager& source);
55
56         bool Validate(Tizen::Security::Cert::X509CertificatePath* pCertPath);
57         bool AddCertificate(Tizen::Security::Cert::X509CertificatePath* pCertPath, Tizen::Base::Collection::IList* pCertChain);
58         bool AddDistributorRootCert(Tizen::Security::Cert::X509CertificatePath* pCertPath);
59         bool AddAuthorRootCert(Tizen::Security::Cert::X509CertificatePath* pCertPath);
60
61 private:
62         InstallationContext* __pContext;
63         SignatureHandler* __pAuthorSignature;
64         SignatureHandler* __pDistributorSignature;
65         Tizen::Security::Cert::X509CertificatePath* __pAuthorCertPath;
66         Tizen::Security::Cert::X509CertificatePath* __pDistributorCertPath;
67
68
69 }; // SignatureManager
70
71 #endif // _SIGNATURE_MANAGER_H_