5baac5b1b940d2113bf6325274512facbeec63e8
[platform/core/security/key-manager.git] / src / manager / service / encryption-logic.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       encryption-logic.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include <encryption-logic.h>
23 #include <ckm/ckm-error.h>
24 #include <dpl/log/log.h>
25
26 namespace CKM {
27
28 void EncryptionLogic::Crypt(const CryptoRequest& request)
29 {
30     // check arguments
31     if(request.input.empty()) {
32         LogError("No input data");
33         m_service.RespondToClient(request, CKM_API_ERROR_INPUT_PARAM);
34         return;
35     }
36
37     // store request in the map
38     auto ret = m_requests.insert(std::make_pair(request.msgId, request));
39     if (!ret.second) {
40         LogError("Request with id " << request.msgId << " already exists");
41         m_service.RespondToClient(request, CKM_API_ERROR_INPUT_PARAM);
42         return;
43     }
44
45     // request key
46     try {
47         m_service.RequestKey(request.cred, request.name, request.label);
48     } catch (...) {
49         LogError("Key request failed");
50         m_requests.erase(request.msgId);
51         m_service.RespondToClient(request, CKM_API_ERROR_SERVER_ERROR);
52     }
53 }
54
55 } /* namespace CKM */