Imported Upstream version 1.1.0
[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 "ESRichCommon.h"
27 #include "OCProvisioningManager.h"
28
29 namespace OIC
30 {
31     namespace Service
32     {
33 #define ENROLEE_SECURITY_TAG "ENROLEE_SECURITY"
34
35         class RemoteEnrolleeResource;
36         class OCSecureResource;
37
38         /**
39          * This class contains the methods needed for security  layer interaction.
40          *
41          * @see EnrolleeSecurity
42          */
43         class EnrolleeSecurity
44         {
45         public:
46             EnrolleeSecurity(std::shared_ptr< RemoteEnrolleeResource > remoteEnrolleeResource,
47             std::string secDbPath);
48             ESResult registerCallbackHandler(EnrolleeSecStatusCb enrolleeSecStatusCb,
49                     SecurityPinCb securityPinCb, SecProvisioningDbPathCb secProvisioningDbPathCb);
50             EasySetupState performOwnershipTransfer();
51
52         private:
53             std::shared_ptr< RemoteEnrolleeResource > m_remoteEnrolleeResource;
54             EnrolleeSecStatusCb m_enrolleeSecStatusCb;
55             SecurityPinCb m_securityPinCb;
56             SecProvisioningDbPathCb m_secProvisioningDbPathCb;
57             std::shared_ptr< OC::OCSecureResource > m_unownedDevice;
58
59             EnrolleeSecState m_enrolleeSecState;std::shared_ptr< OC::OCSecureResource > m_securedResource;
60
61             std::shared_ptr< OC::OCSecureResource > getEnrollee(OC::DeviceList_t &list);
62             void ownershipTransferCb(OC::PMResultList_t *result, int hasError);
63             void convertUUIDToString(OicUuid_t uuid, std::string& uuidString);
64         };
65     }
66 }
67
68 #endif /* ENROLLEE_SECURITY_H_*/
69