718f38238bc7e346edaec0236586692df073fa49
[platform/core/security/key-manager.git] / src / include / ckm / ckm-key.h
1 /*
2  *  Copyright (c) 2014 Samsung Electronics Co.
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  * @file        ckm-key.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       Main header file for client library.
21  */
22 #pragma once
23
24 #include <ckm/ckm-type.h>
25
26 namespace CKM {
27
28 class Key;
29 typedef std::shared_ptr<Key> KeyShPtr;
30
31 class KEY_MANAGER_API Key {
32 public:
33     virtual bool empty() const = 0;
34     virtual KeyType getType() const = 0;
35     virtual int getSize() const = 0;
36     virtual ElipticCurve getCurve() const = 0;
37     virtual RawBuffer getDER() const = 0;
38     virtual ~Key(){}
39
40     static KeyShPtr create(
41         const RawBuffer &rawBuffer,
42         const Password &password = Password());
43 };
44
45 } // namespace CKM
46