Replace shared ptr with unique ptr.
[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/key.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     // initialize openssl internals
45     Internals::initialize();
46 }
47
48 GKeyUPtr Store::getKey(const Token &token) {
49     if (token.backendId != m_backendId) {
50         ThrowErr(Exc::Crypto::WrongBackend, "Decider choose wrong backend!");
51     }
52
53     if (token.dataType.isKeyPrivate() || token.dataType.isKeyPublic()) {
54          return make_unique<AKey>(token.data, token.dataType);
55     }
56
57     if (token.dataType == DataType(DataType::KEY_AES)) {
58          return make_unique<SKey>(token.data, token.dataType);
59     }
60
61     if (token.dataType.isCertificate()) {
62         return make_unique<Cert>(token.data, token.dataType);
63     }
64
65     ThrowErr(Exc::Crypto::KeyNotSupported,
66         "This type of data is not supported by openssl backend: ", (int)token.dataType);
67 }
68
69 TokenPair Store::generateAKey(const CryptoAlgorithm &algorithm)
70 {
71     AlgoType keyType = AlgoType::RSA_GEN;
72     algorithm.getParam(ParamName::ALGO_TYPE, keyType);
73
74     if(keyType == AlgoType::RSA_GEN || keyType == AlgoType::DSA_GEN)
75     {
76         int keyLength = 0;
77         if(!algorithm.getParam(ParamName::GEN_KEY_LEN, keyLength))
78             ThrowErr(Exc::Crypto::InputParam, "Error, parameter GEN_KEY_LEN not found.");
79
80         if(keyType == AlgoType::RSA_GEN)
81             return Internals::createKeyPairRSA(m_backendId, keyLength);
82         else
83             return Internals::createKeyPairDSA(m_backendId, keyLength);
84     }
85     else if(keyType == AlgoType::ECDSA_GEN)
86     {
87         int ecType = 0;
88         if(!algorithm.getParam(ParamName::GEN_EC, ecType))
89             ThrowErr(Exc::Crypto::InputParam, "Error, parameter GEN_EC not found.");
90
91         return Internals::createKeyPairECDSA(m_backendId, static_cast<ElipticCurve>(ecType));
92     }
93     ThrowErr(Exc::Crypto::InputParam, "wrong key type");
94 }
95
96 Token Store::generateSKey(const CryptoAlgorithm &algorithm)
97 {
98     int keyLength = 0;
99     if(!algorithm.getParam(ParamName::GEN_KEY_LEN, keyLength))
100         ThrowErr(Exc::Crypto::InputParam, "Error, parameter GEN_KEY_LEN not found.");
101
102     return Internals::createKeyAES(m_backendId, keyLength);
103 }
104
105 Token Store::import(DataType dataType, const RawBuffer &buffer) {
106     return Token(m_backendId, dataType, buffer);
107 }
108
109 } // namespace SW
110 } // namespace Crypto
111 } // namespace CKM
112