From fb2e47db7b8cd5ca7aac9c0ee1ca8b58ada0158f Mon Sep 17 00:00:00 2001 From: saturneric Date: Mon, 27 Jan 2025 19:59:29 +0100 Subject: refactor: reduce code duplication --- src/core/utils/GpgUtils.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/core/utils/GpgUtils.cpp') diff --git a/src/core/utils/GpgUtils.cpp b/src/core/utils/GpgUtils.cpp index bfbee963..ec0f35e2 100644 --- a/src/core/utils/GpgUtils.cpp +++ b/src/core/utils/GpgUtils.cpp @@ -29,6 +29,7 @@ #include "GpgUtils.h" #include "core/function/GlobalSettingStation.h" +#include "core/model/GpgKey.h" #include "core/model/KeyDatabaseInfo.h" #include "core/model/SettingsObject.h" #include "core/module/ModuleManager.h" @@ -324,4 +325,12 @@ auto GetKeyDatabaseInfoBySettings() -> QList { return key_db_infos; } + +auto GPGFRONTEND_CORE_EXPORT Convert2RawGpgMEKeyList( + const QContainer& keys) -> QContainer { + QContainer recipients(keys.begin(), keys.end()); + recipients.emplace_back(nullptr); + + return recipients; +} } // namespace GpgFrontend -- cgit v1.2.3