Ensure async thread join
[platform/core/security/key-manager.git] / misc / ckm_db_tool / decrypt.h
1 /*
2  *  Copyright (c) 2020 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       decrypt.h
18  * @author     Mateusz Cegielka (m.cegielka@samsung.com)
19  * @version    1.0
20  */
21
22 #pragma once
23
24 #include <string>
25 #include <utility>
26
27 #include "ckm-logic-ext.h"
28 #include <dpl/db/sql_connection.h>
29
30 namespace CKM {
31
32 class Decrypt {
33 public:
34         using Row = DB::SqlConnection::Output::Row;
35
36         Decrypt(const Row &columns, CKMLogicExt &logic, uid_t uid);
37
38         bool canDecryptQuery() const;
39         std::pair<std::string, bool> tryDecrypt(const Row &row) const;
40         int getDataColumnIndex() const;
41
42 private:
43         NameEntry getNameEntry(const Row &row) const;
44         std::string decrypt(const Row &row, const Password &password, const NameEntry& name) const;
45
46         CKMLogicExt &m_logic;
47         uid_t m_uid;
48         int m_columnData;
49         int m_columnDataType;
50         int m_columnIdx;
51 };
52
53 } // namespace CKM