diff options
author | saturneric <[email protected]> | 2024-01-09 12:02:28 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-09 12:02:42 +0000 |
commit | 52814c9c2e5beb73654f358a4e5a90d2611e41a7 (patch) | |
tree | ed1512a34603a7efd2a9428fa3d36d04ad92d9c6 /src/core/model/GpgGenerateKeyResult.cpp | |
parent | feat: improve basical opera-result-text structures and add more informations (diff) | |
download | GpgFrontend-52814c9c2e5beb73654f358a4e5a90d2611e41a7.tar.gz GpgFrontend-52814c9c2e5beb73654f358a4e5a90d2611e41a7.zip |
feat: add more genkey algorithms and modes
Diffstat (limited to 'src/core/model/GpgGenerateKeyResult.cpp')
-rw-r--r-- | src/core/model/GpgGenerateKeyResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/model/GpgGenerateKeyResult.cpp b/src/core/model/GpgGenerateKeyResult.cpp index 005ea36c..990024de 100644 --- a/src/core/model/GpgGenerateKeyResult.cpp +++ b/src/core/model/GpgGenerateKeyResult.cpp @@ -42,7 +42,7 @@ GpgGenerateKeyResult::GpgGenerateKeyResult(gpgme_genkey_result_t r) auto GpgGenerateKeyResult::IsGood() -> bool { return result_ref_ != nullptr; } -auto GpgGenerateKeyResult::GetFingerprint() -> std::string { +auto GpgGenerateKeyResult::GetFingerprint() -> std::string const { return result_ref_->fpr; } |