Check platform feature(network) before check ocsp
[platform/core/security/key-manager.git] / src / manager / service / ocsp-logic.h
1 /*
2  *  Copyright (c) 2014 Samsung Electronics Co.
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        ocsp-logic.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       OCSP logic implementation.
21  */
22 #pragma once
23
24 #include <ckm/ckm-type.h>
25
26 namespace CKM {
27
28 class OCSPLogic {
29 public:
30     OCSPLogic();
31     OCSPLogic(const OCSPLogic &) = delete;
32     OCSPLogic(OCSPLogic &&) = delete;
33     OCSPLogic& operator=(const OCSPLogic &) = delete;
34     OCSPLogic& operator=(OCSPLogic &&) = delete;
35
36     RawBuffer ocspCheck(int commandId, const RawBufferVector &rawChain);
37     virtual ~OCSPLogic(){}
38 private:
39     void setNetAvailable();
40     bool m_isNetAvailable;
41 };
42
43
44
45 } // namespace CKM
46