revise exported headers and cleanup headers
[platform/core/connectivity/smartcard-service.git] / common / include / PKCS15Path.h
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 #ifndef PKCS15Path_H_
18 #define PKCS15Path_H_
19
20 #include "ByteArray.h"
21
22 namespace smartcard_service_api
23 {
24         class PKCS15Path
25         {
26         private :
27                 ByteArray path;
28                 int index;
29                 size_t length;
30
31                 bool parseData(const ByteArray &data);
32
33         public:
34                 PKCS15Path();
35                 PKCS15Path(const ByteArray &data);
36                 PKCS15Path(const ByteArray &path, int index);
37                 PKCS15Path(const unsigned char *path,
38                         size_t length, int index);
39                 ~PKCS15Path();
40
41                 inline const ByteArray getPath() const { return path; }
42                 inline bool hasIndexLength() const { return (length != 0); }
43                 inline int getIndex() const { return index; }
44                 inline size_t size() const { return length; }
45                 int encode(ByteArray &result) const;
46         };
47
48 } /* namespace smartcard_service_api */
49 #endif /* PKCS15Path_H_ */