diff options
author | saturneric <[email protected]> | 2025-02-03 18:01:26 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-03 18:01:26 +0000 |
commit | d3d94f5b7a3e60b3bbb73e832bab7cf2d44a1600 (patch) | |
tree | 5cc7838f1325b076b91bb898fd0da3cfcb60b455 /src/core/model/GpgKey.h | |
parent | doc: update README.md (diff) | |
parent | fix: set pb range when size of operas > 1 (diff) | |
download | GpgFrontend-d3d94f5b7a3e60b3bbb73e832bab7cf2d44a1600.tar.gz GpgFrontend-d3d94f5b7a3e60b3bbb73e832bab7cf2d44a1600.zip |
Merge branch 'develop'
Diffstat (limited to 'src/core/model/GpgKey.h')
-rw-r--r-- | src/core/model/GpgKey.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/core/model/GpgKey.h b/src/core/model/GpgKey.h index 8afa3c7f..1f902ca5 100644 --- a/src/core/model/GpgKey.h +++ b/src/core/model/GpgKey.h @@ -152,7 +152,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasEncryptionCapability() const -> bool; + [[nodiscard]] auto IsHasEncrCap() const -> bool; /** * @brief @@ -161,7 +161,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasActualEncryptionCapability() const -> bool; + [[nodiscard]] auto IsHasActualEncrCap() const -> bool; /** * @brief @@ -169,7 +169,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasSigningCapability() const -> bool; + [[nodiscard]] auto IsHasSignCap() const -> bool; /** * @brief @@ -177,7 +177,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasActualSigningCapability() const -> bool; + [[nodiscard]] auto IsHasActualSignCap() const -> bool; /** * @brief @@ -185,7 +185,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasCertificationCapability() const -> bool; + [[nodiscard]] auto IsHasCertCap() const -> bool; /** * @brief @@ -193,7 +193,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasActualCertificationCapability() const -> bool; + [[nodiscard]] auto IsHasActualCertCap() const -> bool; /** * @brief @@ -201,7 +201,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasAuthenticationCapability() const -> bool; + [[nodiscard]] auto IsHasAuthCap() const -> bool; /** * @brief @@ -209,7 +209,7 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { * @return true * @return false */ - [[nodiscard]] auto IsHasActualAuthenticationCapability() const -> bool; + [[nodiscard]] auto IsHasActualAuthCap() const -> bool; /** * @brief @@ -262,17 +262,17 @@ class GPGFRONTEND_CORE_EXPORT GpgKey { /** * @brief * - * @return std::unique_ptr<std::vector<GpgSubKey>> + * @return std::unique_ptr<QContainer<GpgSubKey>> */ [[nodiscard]] auto GetSubKeys() const - -> std::unique_ptr<std::vector<GpgSubKey>>; + -> std::unique_ptr<QContainer<GpgSubKey>>; /** * @brief * - * @return std::unique_ptr<std::vector<GpgUID>> + * @return std::unique_ptr<QContainer<GpgUID>> */ - [[nodiscard]] auto GetUIDs() const -> std::unique_ptr<std::vector<GpgUID>>; + [[nodiscard]] auto GetUIDs() const -> std::unique_ptr<QContainer<GpgUID>>; /** * @brief Construct a new Gpg Key object |