Add algorithm param validation
[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     return Internals::generateAKey(m_backendId, algorithm);
72 }
73
74 Token Store::generateSKey(const CryptoAlgorithm &algorithm)
75 {
76     return Internals::generateSKey(m_backendId, algorithm);
77 }
78
79 Token Store::import(DataType dataType, const RawBuffer &buffer) {
80     return Token(m_backendId, dataType, buffer);
81 }
82
83 } // namespace SW
84 } // namespace Crypto
85 } // namespace CKM
86