1 /*
2 * Copyright (c) 2023 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "lnn_secure_storage.h"
17
18 #include "softbus_errcode.h"
19
LnnSaveDeviceData(const char * data,LnnDataType dataType)20 int32_t LnnSaveDeviceData(const char *data, LnnDataType dataType)
21 {
22 (void)data;
23 (void)dataType;
24 return SOFTBUS_NOT_IMPLEMENT;
25 }
26
LnnAsyncSaveDeviceData(const char * data,LnnDataType dataType)27 int32_t LnnAsyncSaveDeviceData(const char *data, LnnDataType dataType)
28 {
29 (void)data;
30 (void)dataType;
31 return SOFTBUS_NOT_IMPLEMENT;
32 }
33
LnnRetrieveDeviceData(LnnDataType dataType,char ** data,uint32_t * dataLen)34 int32_t LnnRetrieveDeviceData(LnnDataType dataType, char **data, uint32_t *dataLen)
35 {
36 (void)dataType;
37 (void)data;
38 (void)dataLen;
39 return SOFTBUS_NOT_IMPLEMENT;
40 }
41
LnnUpdateDeviceData(const char * data,LnnDataType dataType)42 int32_t LnnUpdateDeviceData(const char *data, LnnDataType dataType)
43 {
44 (void)data;
45 (void)dataType;
46 return SOFTBUS_NOT_IMPLEMENT;
47 }
48
LnnDeletaDeviceData(LnnDataType dataType)49 int32_t LnnDeletaDeviceData(LnnDataType dataType)
50 {
51 (void)dataType;
52 return SOFTBUS_NOT_IMPLEMENT;
53 }
54