diff options
author | saturneric <[email protected]> | 2024-12-01 00:21:46 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-12-01 00:21:46 +0000 |
commit | eeec34f66fac8ecb350cd8d683a5dd167c91e706 (patch) | |
tree | 61da717af5370e37963da1e21f9daae0dc426b00 /src/core/model/GpgGenKeyInfo.cpp | |
parent | fix: solve link errors on windows (diff) | |
parent | feat: improve windows release structure at nightly build (diff) | |
download | GpgFrontend-eeec34f66fac8ecb350cd8d683a5dd167c91e706.tar.gz GpgFrontend-eeec34f66fac8ecb350cd8d683a5dd167c91e706.zip |
Merge branch 'dev/2.1.5/mingw' into develop
Diffstat (limited to 'src/core/model/GpgGenKeyInfo.cpp')
-rw-r--r-- | src/core/model/GpgGenKeyInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/model/GpgGenKeyInfo.cpp b/src/core/model/GpgGenKeyInfo.cpp index 1514c3bc..1aaa4cea 100644 --- a/src/core/model/GpgGenKeyInfo.cpp +++ b/src/core/model/GpgGenKeyInfo.cpp @@ -232,7 +232,7 @@ auto GenKeyInfo::GetSupportedKeyAlgo() k_support_key_algo = { {"RSA", "RSA", ""}, {"DSA", "DSA", ""}, - {"ECDSA (ED25519)", "ED25519", ""}, + {"EdDSA (ED25519)", "ED25519", ""}, {"ECDSA (NIST P-256)", "NISTP256", ""}, {"ECDSA (NIST P-384)", "NISTP384", ""}, {"ECDSA (NIST P-521)", "NISTP521", ""}, @@ -242,7 +242,7 @@ auto GenKeyInfo::GetSupportedKeyAlgo() {"RSA", "RSA", ""}, {"DSA", "DSA", ""}, {"EdDSA (ED448)", "ED448", ""}, - {"ECDSA (ED25519)", "ED25519", ""}, + {"EdDSA (ED25519)", "ED25519", ""}, {"ECDSA (SECP256K1)", "SECP256K1", ""}, {"ECDSA (NIST P-256)", "NISTP256", ""}, {"ECDSA (NIST P-384)", "NISTP384", ""}, @@ -278,7 +278,7 @@ auto GenKeyInfo::GetSupportedSubkeyAlgo() {"RSA", "", "RSA"}, {"DSA", "", "DSA"}, {"ELG-E", "", "ELG"}, - {"ECDSA (ED25519)", "", "ED25519"}, + {"EdDSA (ED25519)", "", "ED25519"}, {"ECDH (CV25519)", "", "CV25519"}, {"ECDH (NIST P-256)", "", "NISTP256"}, {"ECDH (NIST P-384)", "", "NISTP384"}, @@ -289,7 +289,7 @@ auto GenKeyInfo::GetSupportedSubkeyAlgo() {"RSA", "", "RSA"}, {"DSA", "", "DSA"}, {"ELG-E", "", "ELG"}, - {"ECDSA (ED25519)", "", "ED25519"}, + {"EdDSA (ED25519)", "", "ED25519"}, {"ECDH (CV25519)", "", "CV25519"}, {"ECDH (SECP256K1)", "", "SECP256K1"}, {"EdDSA (ED448)", "", "ED448"}, |