diff options
author | Saturneric <[email protected]> | 2022-11-26 11:19:19 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-11-26 11:19:19 +0000 |
commit | cb299a2b9c18bf80879045f8e99489d7146d9eaf (patch) | |
tree | 87bf2161c1a2b9e9a97eb7ce6ee0cb63d6ff9ef2 /src/core/GpgGenKeyInfo.cpp | |
parent | feat(doc): update contract info (diff) | |
download | GpgFrontend-cb299a2b9c18bf80879045f8e99489d7146d9eaf.tar.gz GpgFrontend-cb299a2b9c18bf80879045f8e99489d7146d9eaf.zip |
fix: record the actural size
1. record the actural size of dialogs and main windows when they are closing
Diffstat (limited to '')
-rw-r--r-- | src/core/GpgGenKeyInfo.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/GpgGenKeyInfo.cpp b/src/core/GpgGenKeyInfo.cpp index 6ca83c96..dca5eff7 100644 --- a/src/core/GpgGenKeyInfo.cpp +++ b/src/core/GpgGenKeyInfo.cpp @@ -199,14 +199,16 @@ GpgFrontend::GenKeyInfo::GenKeyInfo(bool m_is_sub_key, bool m_standalone) const std::vector<std::string> &GpgFrontend::GenKeyInfo::GetSupportedKeyAlgo() { static const std::vector<std::string> support_key_algo = {"RSA", "DSA", - "ED25519"}; + "ELG" + "ED25519", + "CV25519"}; return support_key_algo; } const std::vector<std::string> &GpgFrontend::GenKeyInfo::GetSupportedSubkeyAlgo() { - static const std::vector<std::string> support_subkey_algo = {"RSA", "DSA", - "ED25519"}; + static const std::vector<std::string> support_subkey_algo = { + "RSA", "DSA", "ELG", "ED25519"}; return support_subkey_algo; } |