cba5c563bc389a6c1621330fc10fd088bf6cb3c2
[framework/web/wrt-plugins-tizen.git] / src / SecureElement / SEUtil.cpp
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18
19
20 #include "SEUtil.h"
21 #include <dpl/log/log.h>
22
23
24 namespace DeviceAPI {
25 namespace SecureElement {
26
27 std::vector<unsigned char> SEUtil::toVector(const unsigned char *ch, const int size) {
28         std::vector<unsigned char> vec;
29         if (ch && (size > 0)) {
30                 int i;
31                 
32                 for (i = 0; i < size; i++)
33                         vec.push_back(ch[i]);
34         }
35         return vec;
36 }
37
38
39 unsigned char *SEUtil::toCharPtr(std::vector<unsigned char> vec) {
40         if (vec.size() > 0) {
41                 unsigned char * chr = (unsigned char *) malloc(vec.size() * sizeof(unsigned char));
42                 for (int i = 0; i < static_cast<int>(vec.size()); i++)
43                         chr[i] = vec.at(i);
44
45                 return chr;
46         }
47
48         return NULL;
49 }
50
51 }
52 }