Apply coding rule
[platform/core/connectivity/smartcard-service.git] / common / PKCS15Path.cpp
1 /*
2  * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
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 /* standard library header */
18
19 /* SLP library header */
20
21 /* local header */
22 #include "PKCS15Path.h"
23
24 namespace smartcard_service_api
25 {
26         PKCS15Path::PKCS15Path() : index(-1), length(0)
27         {
28         }
29
30         PKCS15Path::PKCS15Path(const ByteArray &data) : index(-1), length(0)
31         {
32                 parseData(data);
33         }
34
35         PKCS15Path::PKCS15Path(const ByteArray &path, int index) :
36                 path(path), index(index), length(0)
37         {
38         }
39
40         PKCS15Path::PKCS15Path(const unsigned char *path,
41                 size_t length, int index) :
42                 path(path, length), index(index), length(0)
43         {
44         }
45
46         PKCS15Path::~PKCS15Path()
47         {
48         }
49
50         bool PKCS15Path::parseData(const ByteArray &data)
51         {
52                 /* TODO */
53 //              SimpleTLV tlv(data);
54 //
55 //              if (tlv.decodeTLV() == true && tlv.getTag() == 0x30) /* SEQUENCE */
56 //              {
57 //                      /* get path */
58 //                      path = tlv.getOctetString();
59 //
60 //                      if (tlv.decodeTLV())
61 //              }
62                 return true;
63         }
64
65         int PKCS15Path::encode(ByteArray &result) const
66         {
67                 /* TODO */
68                 return 0;
69         }
70
71 } /* namespace smartcard_service_api */