ce759f8484861e20ffb1d179887fcf3a24648b71
[platform/upstream/iotivity.git] / resource / csdk / security / include / internal / svcresource.h
1 //******************************************************************
2 //
3 // Copyright 2015 Intel Mobile Communications GmbH 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 IOTVT_SRM_SVCR_H
22 #define IOTVT_SRM_SVCR_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 /**
29  * Initialize SVC resource by loading data from persistent storage.
30  *
31  * @return ::OC_STACK_OK for Success, otherwise some error value.
32  */
33 OCStackResult InitSVCResource();
34
35 /**
36  * Perform cleanup for SVC resources.
37  */
38 void DeInitSVCResource();
39
40 /**
41  * This function converts SVC data into CBOR format.
42  * Caller needs to invoke 'free' when done using returned string.
43  *
44  * @param svc is the instance of @ref OicSecSvc_t structure. In case of NULL it
45  * will return ::OC_STACK_INVALID_PARAM.
46  * @param cborPayload is the converted cbor value of SVC structure.
47  * @param cborSize is the size of the cbor payload. This value is the size of the
48  * cborPayload. It should not be NON-NULL value.
49  *
50  * @return ::OC_STACK_OK for Success. ::OC_STACK_INVALID in case of invalid parameters.
51  * ::OC_STACK_ERROR in case of error in converting to cbor.
52  */
53  OCStackResult SVCToCBORPayload(const OicSecSvc_t *svc, uint8_t **cborPayload,
54                                 size_t *cborSize);
55
56 #ifdef __cplusplus
57 }
58 #endif
59
60 #endif //IOTVT_SRM_SVCR_H