Refactor SignatureValidator and reduce interface headers
[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.1
20  * @brief       Implementatin of tizen signature validation protocol.
21  */
22 #ifndef _VALIDATION_CORE_SIGNATUREVALIDATOR_H_
23 #define _VALIDATION_CORE_SIGNATUREVALIDATOR_H_
24
25 #include <string>
26 #include <list>
27 #include <vcore/SignatureData.h>
28 #include <vcore/SignatureFinder.h>
29
30 namespace ValidationCore {
31
32 class SignatureValidator {
33 public:
34     enum Result
35     {
36         SIGNATURE_VALID,
37         SIGNATURE_INVALID,
38         SIGNATURE_VERIFIED,
39         SIGNATURE_DISREGARD,
40         SIGNATURE_REVOKED
41     };
42
43     SignatureValidator() = delete;
44     SignatureValidator(const SignatureValidator &) = delete;
45     const SignatureValidator &operator=(const SignatureValidator &) = delete;
46
47     virtual ~SignatureValidator();
48
49     static Result check(
50         const SignatureFileInfo &fileInfo,
51         const std::string &widgetContentPath,
52         bool checkOcsp,
53         bool checkReferences,
54         SignatureData &outData);
55
56     static Result checkList(
57         const SignatureFileInfo &fileInfo,
58         const std::string &widgetContentPath,
59         const std::list<std::string> &uriList,
60         bool checkOcsp,
61         bool checkReferences,
62         SignatureData &outData);
63 };
64
65 } // namespace ValidationCore
66
67 #endif // _VALIDATION_CORE_SIGNATUREVALIDATOR_H_