66acea5bae54682099d7ef3824a00fab60f15b7f
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / inc / EnrolleeSecurity.h
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef ENROLLEE_SECURITY_H_
22 #define ENROLLEE_SECURITY_H_
23
24 #include <functional>
25
26 #include "escommon.h"
27 #include "Utility.h"
28 #include "OCProvisioningManager.h"
29
30 namespace OIC
31 {
32     namespace Service
33     {
34 #define ENROLEE_SECURITY_TAG "ENROLEE_SECURITY"
35
36         class RemoteEnrolleeResource;
37         class OCSecureResource;
38
39         /**
40          * This class contains the methods needed for security  layer interaction.
41          *
42          * @see EnrolleeSecurity
43          */
44         class EnrolleeSecurity
45         {
46         public:
47             EnrolleeSecurity(std::shared_ptr< RemoteEnrolleeResource > remoteEnrolleeResource,
48             std::string secDbPath);
49             ESResult registerCallbackHandler(EnrolleeSecStatusCb enrolleeSecStatusCb,
50                     SecurityPinCb securityPinCb, SecProvisioningDbPathCb secProvisioningDbPathCb);
51             EasySetupState performOwnershipTransfer();
52
53         private:
54             std::shared_ptr< RemoteEnrolleeResource > m_remoteEnrolleeResource;
55             EnrolleeSecStatusCb m_enrolleeSecStatusCb;
56             SecurityPinCb m_securityPinCb;
57             SecProvisioningDbPathCb m_secProvisioningDbPathCb;
58             std::shared_ptr< OC::OCSecureResource > m_unownedDevice;
59
60             EnrolleeSecState m_enrolleeSecState;std::shared_ptr< OC::OCSecureResource > m_securedResource;
61
62             std::shared_ptr< OC::OCSecureResource > findEnrollee(std::string host,
63                     OC::DeviceList_t &list);
64             void ownershipTransferCb(OC::PMResultList_t *result, int hasError);
65             void convertUUIDToString(OicUuid_t uuid, std::string& uuidString);
66         };
67     }
68 }
69
70 #endif /* ENROLLEE_SECURITY_H_*/
71