1f3900c5dbbcef9d340608bbac6c12cc15fe4807
[platform/core/security/cert-svc.git] / vcore / src / vcore / SignatureValidator.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        SignatureValidator.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       Implementatin of tizen signature validation protocol.
21  */
22 #ifndef _VALIDATION_CORE_SIGNATUREVALIDATOR_H_
23 #define _VALIDATION_CORE_SIGNATUREVALIDATOR_H_
24
25 #ifndef LOG_TAG
26 #undef LOG_TAG
27 #define LOG_TAG "OSP"
28 #endif
29
30 #include <string>
31
32 #include <vcore/SignatureData.h>
33
34 namespace ValidationCore {
35
36 class SignatureValidator {
37 public:
38     class ImplSignatureValidator;
39
40     enum AppType
41     {
42         TIZEN,
43         WAC20
44     };
45
46     enum Result
47     {
48         SIGNATURE_VALID,
49         SIGNATURE_INVALID,
50         SIGNATURE_VERIFIED,
51         SIGNATURE_DISREGARD,    // no ocsp response or ocsp return unknown status
52         SIGNATURE_REVOKED,
53                 SIGNATURE_INVALID_CERT_CHAIN, //5, from here, new error enum            
54                 SIGNATURE_INVALID_DISTRIBUTOR_CERT,
55                 SIGNATURE_INVALID_SDK_DEFAULT_AUTHOR_CERT,
56                 SIGNATURE_IN_DISTRIBUTOR_CASE_AUTHOR_CERT,
57                 SIGNATURE_INVALID_CERT_TIME,    
58                 SIGNATURE_NO_DEVICE_PROFILE,
59                 SIGNATURE_INVALID_DEVICE_UNIQUE_ID,
60                 SIGNATURE_INVALID_NO_HASH_FILE,
61                 SIGNATURE_INVALID_HASH_SIGNATURE
62     };
63
64     SignatureValidator() = delete;
65     SignatureValidator(const SignatureValidator &) = delete;
66     const SignatureValidator &operator=(const SignatureValidator &) = delete;
67
68     explicit SignatureValidator(
69         AppType appType,
70         bool ocspEnable,
71         bool crlEnable,
72         bool complianceMode);
73
74     virtual ~SignatureValidator();
75
76     Result check(
77         SignatureData &data,
78         const std::string &widgetContentPath);
79
80     Result checkList(
81         SignatureData &data,
82         const std::string &widgetContentPath,
83         const std::list<std::string>& uriList);
84
85 private:
86      ImplSignatureValidator *m_impl;
87 };
88
89 } // namespace ValidationCore
90
91 #endif // _VALIDATION_CORE_TIZENSIGNATUREVALIDATOR_H_
92