Migrate secure-storage data
[platform/core/security/key-manager.git] / tests / test_common.cpp
1 /*
2  *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Kyungwook Tak <k.tak@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  *
18  * @file        test_common.cpp
19  * @author      Zofia Abramowska (z.abramowska@samsung.com)
20  * @version
21  * @brief
22  */
23 #include <test_common.h>
24 #include <iostream>
25
26 using namespace CKM;
27
28 RawBuffer createDefaultPass()
29 {
30         return createPass(0, RAW_PASS_SIZE);
31 }
32
33 RawBuffer createPass(std::size_t from, std::size_t to)
34 {
35         RawBuffer raw;
36
37         for (std::size_t i = from; i < to; i++)
38                 raw.push_back(static_cast<unsigned char>(i));
39
40         return raw;
41 }
42
43 RawBuffer createBigBlob(std::size_t size)
44 {
45         return createPass(0, size);
46 }
47
48 //raw to hex string conversion from SqlConnection
49 std::string rawToHexString(const RawBuffer &raw)
50 {
51         std::string dump;
52
53         for (auto &e : raw) {
54                 char buf[3];
55                 snprintf(buf, sizeof(buf), "%02x", (e & 0xff));
56                 dump.push_back(buf[0]);
57                 dump.push_back(buf[1]);
58         }
59
60         return dump;
61 }