fe365cbb7fd2cdb75b6d5a6f47a8cd1820289559
[platform/core/security/key-manager.git] / src / manager / client / client-key.cpp
1 /* Copyright (c) 2000 - 2013 Samsung Electronics Co., Ltd All Rights Reserved
2  *
3  *  Licensed under the Apache License, Version 2.0 (the "License");
4  *  you may not use this file except in compliance with the License.
5  *  You may obtain a copy of the License at
6  *
7  *      http://www.apache.org/licenses/LICENSE-2.0
8  *
9  *  Unless required by applicable law or agreed to in writing, software
10  *  distributed under the License is distributed on an "AS IS" BASIS,
11  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  *  See the License for the specific language governing permissions and
13  *  limitations under the License
14  *
15  *
16  * @file        client-key.cpp
17  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
18  * @version     1.0
19  * @brief       Key - api implementation.
20  */
21 #include <ckm/ckm-type.h>
22 #include <ckm/ckm-manager.h>
23
24 #include <dpl/log/log.h>
25
26 #include <generic-key.h>
27
28 namespace CKM {
29
30 Key::Key()
31   : m_impl(NULL)
32 {}
33
34 Key::Key(
35     const RawBuffer &rawData,
36     const std::string &password,
37     KeyType type)
38 {
39     (void)type;
40     m_impl.reset(new GenericKey(rawData, password));
41 }
42
43 Key::Key(const Key &second) {
44     m_impl = second.m_impl;
45 }
46
47 Key& Key::operator=(const Key &second) {
48     m_impl = second.m_impl;
49     return *this;
50 }
51
52 Key::~Key(){}
53
54 bool Key::empty() const {
55     if (m_impl)
56         return m_impl->empty();
57     return true;
58 }
59
60 KeyType Key::getType() const {
61     if (m_impl)
62         return m_impl->getType();
63     return KeyType::KEY_NONE;
64 }
65
66 RawBuffer Key::getDER() const {
67     if (m_impl)
68         return m_impl->getDER();
69     return RawBuffer();
70 }
71
72 GenericKey* Key::getImpl() const {
73     if (m_impl)
74         return m_impl.get();
75     return NULL;
76 };
77
78
79 } // namespace CKM
80