diff options
author | saturneric <[email protected]> | 2024-11-29 15:32:54 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-29 15:32:54 +0000 |
commit | 4e059422b5a78258b41322dfab50ceba116a39bf (patch) | |
tree | e55704151967b2fcb52a144bd2287bc75366d7a6 | |
parent | fix: solve build issue on develop ci (diff) | |
download | GpgFrontend-4e059422b5a78258b41322dfab50ceba116a39bf.tar.gz GpgFrontend-4e059422b5a78258b41322dfab50ceba116a39bf.zip |
fix: correct algo name
-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"}, |