diff options
author | saturneric <[email protected]> | 2024-01-12 15:08:38 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-12 15:08:38 +0000 |
commit | 6983b5c1dd82d159236ebd06cf17f071cc9c1ee9 (patch) | |
tree | fc53f790e33546320b2ecd306a1a9ade6fbdfe7a /src/core/function/KeyPackageOperator.h | |
parent | fix: slove a heap-use-after-free issue (diff) | |
download | GpgFrontend-6983b5c1dd82d159236ebd06cf17f071cc9c1ee9.tar.gz GpgFrontend-6983b5c1dd82d159236ebd06cf17f071cc9c1ee9.zip |
refactor: remove boost and use QString instead of std::filesystem::path
Diffstat (limited to 'src/core/function/KeyPackageOperator.h')
-rw-r--r-- | src/core/function/KeyPackageOperator.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/function/KeyPackageOperator.h b/src/core/function/KeyPackageOperator.h index abfb59b6..968e14f5 100644 --- a/src/core/function/KeyPackageOperator.h +++ b/src/core/function/KeyPackageOperator.h @@ -47,8 +47,8 @@ class GPGFRONTEND_CORE_EXPORT KeyPackageOperator { * @return true if passphrase was generated and saved * @return false if passphrase was not generated and saved */ - static auto GeneratePassphrase(const std::filesystem::path &phrase_path, - QString &phrase) -> bool; + static auto GeneratePassphrase(const QString &phrase_path, QString &phrase) + -> bool; /** * @brief generate the name of the key package @@ -68,7 +68,7 @@ class GPGFRONTEND_CORE_EXPORT KeyPackageOperator { * @return true if key package was generated * @return false if key package was not generated */ - static void GenerateKeyPackage(const std::filesystem::path &key_package_path, + static void GenerateKeyPackage(const QString &key_package_path, const QString &key_package_name, const KeyArgsList &keys, QString &phrase, bool secret, const OperationCallback &cb); @@ -82,8 +82,8 @@ class GPGFRONTEND_CORE_EXPORT KeyPackageOperator { * @return true if key package was imported * @return false if key package was not imported */ - static auto ImportKeyPackage(const std::filesystem::path &key_package_path, - const std::filesystem::path &phrase_path) + static auto ImportKeyPackage(const QString &key_package_path, + const QString &phrase_path) -> std::tuple<bool, std::shared_ptr<GpgImportInformation>>; private: |