Update change log and spec for wrt-plugins-tizen_0.4.12
[framework/web/wrt-plugins-tizen.git] / src / SecureStorage / SecureStorageManager.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  
18 #ifndef TIZENAPIS_TIZEN_SECURE_STORAGE_MANAGER_H_
19 #define TIZENAPIS_TIZEN_SECURE_STORAGE_MANAGER_H_
20
21 #include <dpl/shared_ptr.h>
22 #include <map>
23 #include <string>
24 #include <vector>
25
26 namespace TizenApis {
27 namespace Tizen1_0 {
28
29 class SecureStorageManager;
30 typedef DPL::SharedPtr<SecureStorageManager> SecureStorageManagerPtr;
31
32
33 class SecureStorageManager
34 {
35 public: 
36         std::string get(std::string key);
37         std::vector<std::string> listKeys();
38         void set(std::string key, std::string value);
39         void remove(std::string key);
40         void removeAll();
41         SecureStorageManager();
42         ~SecureStorageManager();
43 private:        
44         static std::string m_filePath;
45         static int m_maxLength;
46         std::map<std::string, std::string> m_securePairData;
47         void saveSecurePairData();
48         void loadSecurePairData();
49         std::string readStringFromMemory(const char *saveBuf, size_t &current, size_t dataSize);
50 };
51 }
52 }
53 #endif