gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 202/264: libssh: Use new ECDSA key types to check known hosts


From: gnunet
Subject: [gnurl] 202/264: libssh: Use new ECDSA key types to check known hosts
Date: Thu, 30 Apr 2020 16:08:25 +0200

This is an automated email from the git hooks/post-receive script.

nikita pushed a commit to branch master
in repository gnurl.

commit 14bf7eb6e526f7ce0c60c1c972b4d935c1c5132d
Author: Anderson Toshiyuki Sasaki <address@hidden>
AuthorDate: Thu Apr 16 19:26:06 2020 +0200

    libssh: Use new ECDSA key types to check known hosts
    
    From libssh 0.9.0, ssh_key_type() returns different key types for ECDSA
    keys depending on the curve.
    
    Signed-off-by: Anderson Toshiyuki Sasaki <address@hidden>
    Fixes #5252
    Closes #5253
---
 lib/vssh/libssh.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c
index 08d9f9e0f..54bc5e019 100644
--- a/lib/vssh/libssh.c
+++ b/lib/vssh/libssh.c
@@ -403,6 +403,9 @@ static int myssh_is_known(struct connectdata *conn)
           knownkey.keytype = CURLKHTYPE_RSA1;
           break;
         case SSH_KEYTYPE_ECDSA:
+        case SSH_KEYTYPE_ECDSA_P256:
+        case SSH_KEYTYPE_ECDSA_P384:
+        case SSH_KEYTYPE_ECDSA_P521:
           knownkey.keytype = CURLKHTYPE_ECDSA;
           break;
         case SSH_KEYTYPE_ED25519:
@@ -470,6 +473,11 @@ static int myssh_is_known(struct connectdata *conn)
         foundkey.keytype = CURLKHTYPE_RSA1;
         break;
       case SSH_KEYTYPE_ECDSA:
+#if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0,9,0)
+      case SSH_KEYTYPE_ECDSA_P256:
+      case SSH_KEYTYPE_ECDSA_P384:
+      case SSH_KEYTYPE_ECDSA_P521:
+#endif
         foundkey.keytype = CURLKHTYPE_ECDSA;
         break;
 #if LIBSSH_VERSION_INT >= SSH_VERSION_INT(0,7,0)

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]