Add scheme encryption test db generator
[platform/core/security/key-manager.git] / src / manager / crypto / sw-backend / store.cpp
1 /*
2  *  Copyright (c) 2000 - 2015 Samsung Electronics Co., Ltd All Rights Reserved
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       store.cpp
18  * @author     BartÅ‚omiej Grzelewski (b.grzelewski@samsung.com)
19  * @version    1.0
20  */
21 #include <memory>
22
23 #include <generic-backend/exception.h>
24 #include <sw-backend/obj.h>
25 #include <sw-backend/store.h>
26 #include <sw-backend/internals.h>
27
28 namespace {
29
30 template <typename T, typename ...Args>
31 std::unique_ptr<T> make_unique(Args&& ...args) {
32     return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
33 }
34
35 } // namespace anonymous
36
37 namespace CKM {
38 namespace Crypto {
39 namespace SW {
40
41 Store::Store(CryptoBackend backendId)
42   : GStore(backendId)
43 {
44 }
45
46 GObjUPtr Store::getObject(const Token &token) {
47     if (token.backendId != m_backendId) {
48         ThrowErr(Exc::Crypto::WrongBackend, "Decider choose wrong backend!");
49     }
50
51     if (token.dataType.isKeyPrivate() || token.dataType.isKeyPublic()) {
52          return make_unique<AKey>(token.data, token.dataType);
53     }
54
55     if (token.dataType == DataType(DataType::KEY_AES)) {
56          return make_unique<SKey>(token.data, token.dataType);
57     }
58
59     if (token.dataType.isCertificate()) {
60         return make_unique<Cert>(token.data, token.dataType);
61     }
62
63     if (token.dataType.isBinaryData()) {
64         return make_unique<BData>(token.data, token.dataType);
65     }
66
67     ThrowErr(Exc::Crypto::DataTypeNotSupported,
68         "This type of data is not supported by openssl backend: ", (int)token.dataType);
69 }
70
71 TokenPair Store::generateAKey(const CryptoAlgorithm &algorithm)
72 {
73     return Internals::generateAKey(m_backendId, algorithm);
74 }
75
76 Token Store::generateSKey(const CryptoAlgorithm &algorithm)
77 {
78     return Internals::generateSKey(m_backendId, algorithm);
79 }
80
81 Token Store::import(DataType dataType, const RawBuffer &buffer) {
82     return Token(m_backendId, dataType, buffer);
83 }
84
85 } // namespace SW
86 } // namespace Crypto
87 } // namespace CKM
88