Move encryption from crypto-logic class to "internal module".
[platform/core/security/key-manager.git] / src / manager / crypto / platform / decider.cpp
1 /*
2  *  Copyright (c) 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       decider.cpp
18  * @author     BartÅ‚omiej Grzelewski (b.grzelewski@samsung.com)
19  * @version    1.0
20  */
21 #include <dpl/log/log.h>
22
23 #include <crypto-backend.h>
24
25 #include <platform/decider.h>
26
27 #include <generic-backend/exception.h>
28 #include <sw-backend/store.h>
29 #include <tz-backend/store.h>
30
31 namespace CKM {
32 namespace Crypto {
33
34 Decider::Decider()
35   : m_swStore(new SW::Store(CryptoBackend::OpenSSL))
36   , m_tzStore(new TZ::Store(CryptoBackend::TrustZone))
37 {}
38
39 GStore& Decider::getStore(const Token &token) const {
40     return getStore(token.backendId);
41 };
42
43 GStore& Decider::getStore(CryptoBackend cryptoBackend) const {
44     GStore *gStore = NULL;
45     if (cryptoBackend == CryptoBackend::OpenSSL)
46         gStore = m_swStore.get();
47     if (cryptoBackend == CryptoBackend::TrustZone)
48         gStore = m_tzStore.get();
49
50     if (gStore)
51         return *gStore;
52
53     ThrowErr(Exc::Crypto::InternalError,
54              "Backend not available. BackendId: ", (int)cryptoBackend);
55 }
56
57 GStore& Decider::getStore(DataType data, bool exportable) const {
58     return getStore(chooseCryptoBackend(data, exportable));
59 }
60
61 CryptoBackend Decider::chooseCryptoBackend(DataType dataType, bool exportable) const {
62 // The list of items that MUST be support by OpenSSL
63     if (dataType.isCertificate())
64         return CryptoBackend::OpenSSL;
65
66     if (dataType.isBinaryData())
67         return CryptoBackend::OpenSSL;
68
69     if (exportable)
70         return CryptoBackend::OpenSSL;
71
72 //  This is the place where we can use trust zone backend
73 //  Examples:
74 //
75 //  if (dataType.isKeyPrivate())
76 //      return CryptoBackend::TrustZone;
77
78 // This item does not met Trust Zone requirements. Let's use software backend
79     return CryptoBackend::OpenSSL;
80 }
81
82 } // namespace Crypto
83 } // namespace CKM
84